Adjust pacing of commands #2
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 lab to GitHub Pages | |
| # Validates this lab and publishes it to GitHub Pages on every push to main. | |
| # All the work lives in the reusable workflow in dockersamples/labspace-web, so this | |
| # file stays a one-liner. Enable Pages first: Settings → Pages → Source: | |
| # "GitHub Actions". | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| deploy: | |
| uses: dockersamples/labspace-web/.github/workflows/deploy-lab.yml@main | |
| with: | |
| lab-dir: lab | |
| # Pin to a released version for stable labs, e.g. "1". "latest" tracks the | |
| # newest runtime — convenient, but the app can change under you. | |
| runtime-tag: "latest" |