Bump actions/checkout from 3 to 4 #4
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 | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
inputs: | |
should_release: | |
description: "Create release?" | |
required: true | |
default: false | |
type: boolean | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup MAPI | |
uses: BadMagic100/setup-hk@v1 | |
with: | |
apiPath: API | |
dependencyFilePath: DisableEnemyGeo/ModDependencies.txt | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c Release | |
- name: Prepare artifacts for release | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Publish | |
path: DisableEnemyGeo/bin/Publish | |
release: | |
needs: | |
- build | |
runs-on: windows-latest | |
# only make a release if we manually request the build - other builds will be handled automatically with a push | |
if: github.event_name == 'workflow_dispatch' && github.event.inputs.should_release == 'true' | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: Get build details | |
id: details | |
# this assumes that an MSBuild task that writes the SHA256 of the zip file to SHA.txt, and the mod version (usually | |
# the same as the assembly version) to version.txt. The contents of these files are read to step outputs for use in release | |
run: | | |
$sha = Get-Content artifacts/Publish/SHA.txt | |
$ver = Get-Content artifacts/Publish/VERSION.txt | |
echo "archiveHash=$sha" >> $env:GITHUB_OUTPUT | |
echo "buildVersion=$ver" >> $env:GITHUB_OUTPUT | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: false | |
generate_release_notes: true | |
fail_on_unmatched_files: true | |
tag_name: v${{ steps.details.outputs.buildVersion }} | |
body: | | |
SHA256: ${{ steps.details.outputs.archiveHash }} | |
files: | | |
artifacts/Publish/DisableEnemyGeo.zip |