Update packages, add appStorage #69
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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
lfs: true | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install && sudo apt install genisoimage | |
- name: Load game.config.json | |
uses: antifree/[email protected] | |
with: | |
filename: "game.config.json" | |
prefix: game | |
- name: Build project | |
run: npm run build | |
- name: Load meta.json | |
uses: antifree/[email protected] | |
with: | |
filename: "dist/meta.json" | |
prefix: meta | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./dist/web | |
- name: Create release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: false | |
title: "${{ env.game_title }} latest build" | |
files: | | |
./dist/${{ env.meta_title }}-web.zip | |
./dist/${{ env.meta_title }}-win.zip | |
./dist/${{ env.meta_title }}-mac.dmg | |
./dist/${{ env.meta_title }}-linux.zip | |
- name: Upload to Itch | |
if: ${{env.game_itch_upload == 'true'}} | |
uses: Ayowel/[email protected] | |
with: | |
butler_key: ${{ secrets.BUTLER_CREDENTIALS }} | |
itch_user: ${{ env.game_itch_username }} | |
itch_game: ${{ env.game_itch_game }} | |
files: | | |
./dist/${{ env.meta_title }}-web.zip | |
./dist/${{ env.meta_title }}-win.zip | |
./dist/${{ env.meta_title }}-mac.dmg | |
./dist/${{ env.meta_title }}-linux.zip | |
auto_channel: true | |
butler_version: "latest" | |
check_signature: false | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |