This should be the Title #64
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: Build+Release on Push/PR | |
on: | |
push: | |
branches: [ batstyx ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
env: | |
PROJECT: ${{ 'Graveyard' }} | |
jobs: | |
build-and-release: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] # https://github.com/marketplace/actions/checkout | |
- id: get_head_commit | |
run: | | |
echo "title=$(powershell "git log --format=%B -n 1 HEAD | Select -First 1")" >> $GITHUB_OUTPUT | |
echo "body=$(powershell "git log --format=%B -n 1 HEAD | Select -Skip 1")" >> $GITHUB_OUTPUT | |
- uses: microsoft/[email protected] # https://github.com/marketplace/actions/setup-msbuild | |
- uses: NuGet/[email protected] # https://github.com/marketplace/actions/setup-nuget-exe-for-use-with-actions | |
- run: .\scripts\update-libraries.ps1 | |
- run: nuget restore "${{ env.PROJECT }}.sln" | |
- id: set_version | |
run: | | |
$build = 3000 + $Env:GITHUB_RUN_NUMBER | |
$buildVersion = .\scripts\assembly-version.ps1 -project "${{ env.PROJECT }}" -build $build -overrideVersion ${{ github.ref }} | |
echo "buildVersion=$buildVersion" >> $env:GITHUB_OUTPUT | |
# https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ | |
# https://stackoverflow.com/a/74377542/146360 | |
- run: msbuild.exe "${{ env.PROJECT }}.sln" /p:platform="x86" /p:configuration="Release" | |
- id: create_zip | |
run: | | |
$zipName = "${{ env.PROJECT }}-v${{ steps.set_version.outputs.buildVersion }}.zip" | |
7z a $zipName .\${{ env.PROJECT }}\bin\x86\Release\${{ env.PROJECT }}.dll .\${{ env.PROJECT }}\bin\x86\Release\*-* | |
echo "zipName=$zipName" >> $env:GITHUB_OUTPUT | |
- uses: ncipollo/[email protected] # https://github.com/marketplace/actions/create-release | |
id: create_release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: "${{ steps.set_version.outputs.buildVersion }}: ${{ steps.get_head_commit.outputs.title }}" | |
body: ${{ steps.get_head_commit.outputs.body }} | |
tag: v${{ steps.set_version.outputs.buildVersion }} | |
draft: false | |
prerelease: true | |
artifacts: "${{ steps.create_zip.outputs.zipName }}" | |
artifactContentType: "application/zip" |