2.1.0 #13
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: Deploy | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
3.1.x | |
6.0.x | |
7.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Set Assembly Version | |
run: ./build.sh --task=GitVersion --configuration=Release | |
- name: Build Library | |
run: dotnet build --configuration Release --no-restore | |
- name: Update Version | |
run: sed -i "s/<Version><\/Version>/<Version>${{ github.event.release.name }}<\/Version>/" ./Float.TinCan.LocalLRSServer/Float.TinCan.LocalLRSServer.csproj | |
- name: Pack and Upload | |
run: dotnet pack --configuration Release --no-restore | |
- name: Deploy to NuGet | |
env: | |
FLOAT_NUGET_TOKEN: ${{ secrets.FLOAT_NUGET_TOKEN }} | |
run: dotnet nuget push ./Float.TinCan.LocalLRSServer/bin/Release/Float.TinCan.LocalLRSServer.${{ github.event.release.name }}.nupkg --api-key "${FLOAT_NUGET_TOKEN}" --source https://api.nuget.org/v3/index.json |