Skip to content

Rework Downloads page into Get Started guide #10

Rework Downloads page into Get Started guide

Rework Downloads page into Get Started guide #10

Workflow file for this run

name: Build and deploy Roq site to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Generate Roq Site
uses: quarkiverse/quarkus-roq@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5