Skip to content

Fix version number

Fix version number #19

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