From c905abb714bdb7b282337cba0b1d400fc034accb Mon Sep 17 00:00:00 2001 From: ikpil Date: Sat, 23 Sep 2023 14:02:45 +0900 Subject: [PATCH] release --- .github/release-drafter.yml | 37 +++++++++++++++++++ .github/workflows/release.yml | 67 +++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+) create mode 100644 .github/release-drafter.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..97d154c --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,37 @@ +name-template: '$RESOLVED_VERSION' +tag-template: '$RESOLVED_VERSION' +template: | + # What's Changed + + $CHANGES + + **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION + +categories: + - title: 'Changes' + labels: + - 'feature' + - 'feat' + + - title: 'Bug Fixes' + labels: + - 'bug' + - 'fix' + +version-resolver: + major: + labels: + - 'type: breaking' + minor: + labels: + - 'type: feature' + patch: + labels: + - 'type: bug' + - 'type: maintenance' + - 'type: docs' + - 'type: dependencies' + - 'type: security' + +exclude-labels: + - 'skip-changelog' \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..055ca27 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,67 @@ +name: Release +on: + push: + tags: + - '[0-9]+.[0-9]+.[0-9]+' + +jobs: + build: + runs-on: ubuntu-latest + env: + working-directory: ./dotnet-workflow + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Dotnet + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '7.x' + + - name: restore dependencies + working-directory: ${{ env.working-directory }} + run: dotnet restore + + - name: build + working-directory: ${{ env.working-directory }} + run: dotnet build -c Release --no-restore + + - name: publish + working-directory: ${{ env.working-directory }} + run: dotnet publish src/DotRecast.Recast.Demo -c Release --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: | + 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: | + ${{ env.working-directory }}/DotRecast.Recast.Demo-${{ steps.version.outputs.version}}.zip + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +