Skip to content

Added workflows

Added workflows #1

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.GeoJSON\bin\Release\Frends.Community.GeoJSON.*.nupkg --api-key ${{ secrets.COMMUNITY_FEED_API_KEY }} --source https://www.myget.org/F/frends-community-test/api/v2/package