Bump Nuke.Components and Nuke.Common #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ubuntu-latest: | |
name: ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: 'Cache: .nuke/temp, ~/.nuget/packages' | |
uses: actions/cache@v3 | |
with: | |
path: | | |
.nuke/temp | |
~/.nuget/packages | |
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }} | |
- name: 'Run: Push' | |
run: ./build.cmd Push | |
env: | |
FeedGitHubToken: ${{ secrets.FEED_GITHUB_TOKEN }} | |
NuGetApiKey: ${{ secrets.NUGET_API_KEY }} | |
- name: Report Coveralls | |
uses: coverallsapp/github-action@v2 | |
- name: 'Publish: Artifacts' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: Artifacts |