Only publish from the playground branch #18
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 Playground | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: { go-version: "1.23", check-latest: true } | |
- name: Setup TinyGo | |
uses: acifani/setup-tinygo@v2 | |
with: { tinygo-version: 0.34.0 } | |
- name: Generate App | |
run: make playground | |
- name: Upload Artifact | |
if: github.ref == 'refs/heads/playground' | |
uses: actions/upload-pages-artifact@v3 | |
with: { path: ./pub } | |
deploy: | |
needs: build | |
if: github.ref == 'refs/heads/playground' | |
permissions: | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- id: deployment | |
uses: actions/deploy-pages@v4 |