forked from ShadowMario/FNF-PsychEngine
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed stretched stuff with Long D&B health bar Fixed an issue where turning off color shaders would crash the game because of notes Builds now automatically get uploaded after release
- Loading branch information
1 parent
2401c01
commit 37d9ed3
Showing
5 changed files
with
114 additions
and
10 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,105 @@ | ||
name: Release | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
uses: ./.github/workflows/main.yml | ||
with: | ||
buildFlags: officialBuild | ||
|
||
release-windows: | ||
name: Release windowsBuild | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Windows artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: build | ||
name: windowsBuild | ||
- name: Compress build | ||
run: | | ||
sudo apt-get install p7zip-full | ||
7z a -tzip build.zip -w ./build/. | ||
- name: Upload windowsBuild to release | ||
uses: svenstaro/upload-release-action@2.5.0 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: build.zip | ||
asset_name: Windows64.zip | ||
overwrite: false | ||
|
||
release-android: | ||
name: Release Android Build | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Android artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: build | ||
name: androidBuild | ||
- name: Compress build | ||
run: | | ||
sudo apt-get install p7zip-full | ||
7z a -tzip build.zip -w ./build/. | ||
- name: Upload Android build to release | ||
uses: svenstaro/upload-release-action@2.5.0 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: build.zip | ||
asset_name: Android Build.zip | ||
overwrite: false | ||
|
||
release-linux: | ||
name: Release linuxBuild | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Linux artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: build | ||
name: linuxBuild | ||
- name: Compress build | ||
run: | | ||
sudo apt-get install p7zip-full | ||
7z a -y -ttar build.tar -w ./build/. | ||
gzip build.tar | ||
- name: Upload linuxBuild to release | ||
uses: svenstaro/upload-release-action@2.5.0 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: build.tar.gz | ||
asset_name: Linux64.tar.gz | ||
overwrite: false | ||
|
||
release-mac: | ||
name: Release macBuild | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Mac artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: build | ||
name: macBuild | ||
- name: Compress build | ||
run: | | ||
sudo apt-get install p7zip-full | ||
7z a -tzip build.zip -w ./build/. | ||
- name: Upload macBuild to release | ||
uses: svenstaro/upload-release-action@2.5.0 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: build.zip | ||
asset_name: Mac64.zip | ||
overwrite: false |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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