Fix version number #19
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: BuildAndTestOnEveryPush.yml | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
build: | |
name: Build on windows-latest | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: dotnet build | |
- name: Test | |
run: dotnet test | |
- name: Pack release version of task | |
run: dotnet pack --configuration Release --include-source | |
- name: Push NuGet package to the testfeed | |
run: dotnet nuget push Frends.Community.Apache\bin\Release\Frends.Community.Apache.*.nupkg --api-key ${{ secrets.COMMUNITY_FEED_API_KEY }} --source https://www.myget.org/F/frends-community-test/api/v2/package |