Better the doc #7
Workflow file for this run
This file contains hidden or 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: Build Preservation Python3 with Pygbag | |
| on: | |
| push: | |
| # Sequence of patterns matched against refs/tags | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-pygbag: | |
| name: Preservation-python3 Game | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v4 | |
| - name: Install and Build 🔧 | |
| run: | | |
| echo "Attempting to install pygbag" | |
| python -m pip install pygbag | |
| echo "Successfully installed pygbag" | |
| echo "Attempting to build the game" | |
| python -m pygbag --build --template $GITHUB_WORKSPACE/default.tmpl $GITHUB_WORKSPACE/main.py | |
| echo "Successfully build the game and compiled to WebAssembly" | |
| - name: Upload to GitHub pages branch gh-pages 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4.7.4 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| branch: gh-pages | |
| folder: build/web |