release 8.x -> 9.x #24
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: Release | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer | |
- name: Setup Dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.x' | |
- name: restore dependencies | |
run: dotnet restore | |
- name: build | |
run: dotnet build -c Release --no-restore | |
- name: publish | |
run: dotnet publish src/DotRecast.Recast.Demo -c Release --framework net9.0 --no-restore --no-self-contained --output working-temp | |
- name: version | |
id: version | |
run: | | |
tag=${GITHUB_REF/refs\/tags\//} | |
version=${tag} | |
major=${version%%.*} | |
echo "tag=${tag}" >> $GITHUB_OUTPUT | |
echo "version=${version}" >> $GITHUB_OUTPUT | |
echo "major=${major}" >> $GITHUB_OUTPUT | |
- name: Zip | |
working-directory: ${{ env.working-directory }} | |
run: | | |
cp -rfv resources working-temp | |
cd working-temp | |
echo "dotnet DotRecast.Recast.Demo.dll" > run.bat | |
zip -r ../DotRecast.Recast.Demo-${{ steps.version.outputs.version}}.zip ./ | |
if: success() | |
- uses: release-drafter/release-drafter@master | |
with: | |
version: ${{ steps.version.outputs.version }} | |
publish: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: zip Upload | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
DotRecast.Recast.Demo-${{ steps.version.outputs.version}}.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |