chore: bh3 7.5 #173
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: "Regular CI Build" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build app | |
run: | | |
./configure.sh | |
pnpm run format-check | |
pnpm run lint | |
YAAGL_CHANNEL_CLIENT=hk4ecn node ./build-app.js | |
YAAGL_CHANNEL_CLIENT=hk4eos node ./build-app.js | |
YAAGL_CHANNEL_CLIENT=bh3glb node ./build-app.js | |
YAAGL_CHANNEL_CLIENT=hkrpgcn node ./build-app.js | |
YAAGL_CHANNEL_CLIENT=hkrpgos node ./build-app.js | |
# - name: Tar app | |
# run: | | |
# tar -zcf Yaagl.tar.gz Yaagl.app | |
# tar -zcf "Yaagl OS.tar.gz" "Yaagl OS.app" | |
# tar -zcf "Yaagl Honkai Global.tar.gz" "Yaagl Honkai Global.app" | |
# - name: Upload artifact - app | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: app | |
# path: Yaagl.tar.gz | |
# - name: Upload artifact - app-os | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: app-os | |
# path: "Yaagl OS.tar.gz" |