Update Metatron.iss #6
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: | |
- '*' | |
jobs: | |
build: | |
runs-on: windows-latest # .NET Framework 4.8 requires Windows | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup MSBuild Path | |
uses: microsoft/[email protected] | |
- name: Setup NuGet.exe | |
uses: NuGet/[email protected] | |
- name: Restore NuGet packages | |
run: nuget restore Metatron.sln | |
- name: Build solution | |
run: msbuild Metatron.sln /p:Configuration=Release /p:OutDir="..\build" | |
- name: Inno Setup | |
# You may pin to the exact commit or the version. | |
# uses: nadeemjazmawe/inno-setup-action-cli@31fe986b893b62ba38889603be4a74452a8f6362 | |
uses: nadeemjazmawe/[email protected] | |
with: | |
# Path for ISS file | |
filepath: Metatron.iss | |
- name: Publish Bot | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
./Output/MetatronSetup.exe | |
./build/Metatron.exe | |
./build/isxGamesPatcher.exe | |
./Data/* | |
./PatcherManifests/* | |
token: ${{ secrets.GITHUB_TOKEN }} |