.NET 6 is EOL in a month #101
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
jobs: | |
CI: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Needed in order for tags to be available so prereleases autoincrement the version | |
- name: Build | |
run: ./build.ps1 | |
- name: Publish to MyGet | |
if: github.ref == 'refs/heads/main' | |
run: dotnet nuget push artifacts\Packages\Techsola.InstantReplay.*.nupkg --source https://www.myget.org/F/techsola/api/v3/index.json --api-key ${{ secrets.MYGET_API_KEY }} | |
- name: Upload packages artifact | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Packages | |
path: artifacts/Packages | |
- name: Upload logs artifact | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Logs | |
path: artifacts/Logs |