Skip to content

Bump quarkus-roq.version from 1.0.7 to 1.1.2 (#5) #6

Bump quarkus-roq.version from 1.0.7 to 1.1.2 (#5)

Bump quarkus-roq.version from 1.0.7 to 1.1.2 (#5) #6

Workflow file for this run

## 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