Bump quarkus-roq.version from 1.0.7 to 1.1.2 (#5) #6
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
## Deploy to GH-Pages for your Quarkus Roq blog. | |
name: Roq Site Deploy | |
on: | |
push: | |
branches: [ main ] # 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 |