Premier talk 2026 (#68) #38
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
| ## Deploy to GH-Pages for your Quarkus Roq site. | |
| name: Roq Site Deploy | |
| env: | |
| TZ: Europe/Paris | |
| on: | |
| push: | |
| branches: [ master ] # Switch to the branch which should be deployed to GitHub Pages | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate Roq Site | |
| uses: quarkiverse/quarkus-roq@v1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} # Used to automatically get the GitHub Pages url | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| permissions: | |
| pages: write # to deploy to Pages | |
| id-token: write # to verify the deployment originates from an appropriate source | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |