Fog Of War Implementation & UI Themes Feature & Fixes #348
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: CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: npm install prettier | |
- run: npm run format:check | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: chmod 744 ./release_make/CI.sh | |
- run: ./release_make/CI.sh | |
- uses: actions/upload-artifact@v4 | |
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 | |
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 | |
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 | |
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 | |
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 | |
with: | |
name: Source_Code | |
path: ./source.7z | |
compression-level: 0 | |
if-no-files-found: error | |
- uses: mholetzko/annotate_runs@1.0.1 | |
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." | |
warning: "All archives are double-packed in ZIP + 7ZIP(LZMA2) format. You will need an archive manager that supports both ZIP and 7ZIP(LZMA2) to extract them." |