This repository was archived by the owner on Apr 13, 2026. It is now read-only.
bump version #76
Workflow file for this run
This file contains hidden or 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: AutoBuild | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| env: | |
| azure_artifacts_feed_url: https://pkgs.dev.azure.com/frends-platform/frends-tasks/_packaging/test/nuget/v3/index.json | |
| jobs: | |
| build: | |
| name: AutoBuild on ubuntu-latest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - name: Pack release version | |
| run: dotnet pack --configuration Release | |
| - uses: actions/setup-dotnet@v5.0.1 | |
| with: | |
| dotnet-version: '8.0.x' | |
| source-url: ${{ env.azure_artifacts_feed_url }} | |
| env: | |
| NUGET_AUTH_TOKEN: ${{ secrets.TASKS_TEST_FEED_API_KEY }} | |
| - name: Push NuGet package(s) to the test feed | |
| run: dotnet nuget push bin/Release/frendstasktemplate.*.nupkg --api-key ${{ secrets.TASKS_TEST_FEED_API_KEY }} --source ${{ env.azure_artifacts_feed_url }} --skip-duplicate |