Uprade jsonpath to v0.10.1 #42
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: 🛝 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-file: go.mod, check-latest: true } | |
| - name: Setup TinyGo | |
| uses: acifani/setup-tinygo@v2 | |
| # https://github.com/tinygo-org/tinygo/issues/4873 | |
| with: { tinygo-version: 0.36.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 |