-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from isxGames/opensource-release
Opensource release
- Loading branch information
Showing
285 changed files
with
73,251 additions
and
4,327 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
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 -o ./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 Plugin | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | | ||
./Output/MetatronSetup.exe | ||
./build/Metatron.exe | ||
./build/isxGamesPatcher.exe | ||
./Data/* | ||
./PatcherManifests/* | ||
token: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.