forked from ianfab/fairyground
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix typo & Do not upload artifacts in pull requests
- Loading branch information
1 parent
3cb5547
commit cb41ef8
Showing
3 changed files
with
22 additions
and
8 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 |
---|---|---|
|
@@ -15,48 +15,55 @@ jobs: | |
- run: ./release_make/CI.sh | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
name: Fairyground-Windows-x86_64 | ||
path: ./release_make/release-builds/win/x64/fairyground.7z | ||
compression-level: 0 | ||
if-no-files-found: error | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
name: Fairyground-Windows-ARM64 | ||
path: ./release_make/release-builds/win/arm64/fairyground.7z | ||
compression-level: 0 | ||
if-no-files-found: error | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
name: Fairyground-Linux-x86_64 | ||
path: ./release_make/release-builds/linux/x64/fairyground.7z | ||
compression-level: 0 | ||
if-no-files-found: error | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
name: Fairyground-Linux-ARM64 | ||
path: ./release_make/release-builds/linux/arm64/fairyground.7z | ||
compression-level: 0 | ||
if-no-files-found: error | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
name: Fairyground-Script-AllPlatform | ||
path: ./release_make/release-builds/script/any/fairyground.7z | ||
compression-level: 0 | ||
if-no-files-found: error | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
name: Source_Code | ||
path: ./source.7z | ||
compression-level: 0 | ||
if-no-files-found: error | ||
|
||
- uses: mholetzko/[email protected] | ||
if: github.event_name != 'pull_request' | ||
with: | ||
title: "Fairyground Download Notice" | ||
info: "Choose the version that matches your platform (i.e. CPU architecture and operating system).\n\"Fairyground-Script-AllPlatform\" is a script version that theorically supports all platforms but you need to install node.js before running it (See HOW_TO_USE.txt in the archive).\nOther versions are provided with a binary executable and are portable.\n ❗ If you don't know which version to download or no version suits your platform (e.g. macOS), select \"Fairyground-Script-AllPlatform\" and then follow HOW_TO_USE.txt in the archive." | ||
|
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