-
Notifications
You must be signed in to change notification settings - Fork 13
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 #4 from risk-of-thunder/v2
V2 continued
- Loading branch information
Showing
30 changed files
with
855 additions
and
90 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,67 @@ | ||
name: GitHub Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' # Push events to matching v*, i.e. v20.15.10 | ||
|
||
jobs: | ||
tagged-release: | ||
name: "Tagged Release" | ||
runs-on: "windows-latest" | ||
|
||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Dotnet Setup | ||
uses: actions/setup-dotnet@v1 | ||
|
||
- name: Publish Windows x64 | ||
run: dotnet publish -c Release --sc -r win-x64 --output ./BepInEx_GUI_win_x64_${{github.ref_name}} | ||
|
||
- name: Zip Windows x64 Release | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: BepInEx_GUI_win_x64_${{github.ref_name}}/ | ||
recursive: false | ||
dest: BepInEx_GUI_win_x64_${{github.ref_name}}.zip | ||
|
||
- name: Publish Windows x86 | ||
run: dotnet publish -c Release --sc -r win-x86 --output ./BepInEx_GUI_win_x86_${{github.ref_name}} | ||
|
||
- name: Zip Windows x86 Release | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: BepInEx_GUI_win_x86_${{github.ref_name}}/ | ||
recursive: false | ||
dest: BepInEx_GUI_win_x86_${{github.ref_name}}.zip | ||
|
||
- name: Publish Linux x64 | ||
run: dotnet publish -c Release --sc -r linux-x64 --output ./BepInEx_GUI_linux_x64_${{github.ref_name}} | ||
|
||
- name: Zip Linux x64 Release | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: BepInEx_GUI_linux_x64_${{github.ref_name}}/ | ||
recursive: false | ||
dest: BepInEx_GUI_linux_x64_${{github.ref_name}}.zip | ||
|
||
- name: Publish macOS x64 | ||
run: dotnet publish -c Release --sc -r osx-x64 --output ./BepInEx_GUI_macOS_x64_${{github.ref_name}} | ||
|
||
- name: Zip macOS x64 Release | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: BepInEx_GUI_macOS_x64_${{github.ref_name}}/ | ||
recursive: false | ||
dest: BepInEx_GUI_macOS_x64_${{github.ref_name}}.zip | ||
|
||
- name: "Make GitHub Release" | ||
uses: "marvinpinto/action-automatic-releases@latest" | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
prerelease: false | ||
files: | | ||
*.zip |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.