Skip to content

Show some screenshots in about page (#19) #35

Show some screenshots in about page (#19)

Show some screenshots in about page (#19) #35

Workflow file for this run

## Deploy to GH-Pages for your Quarkus Roq blog.
name: Quarkus Roq Deploy CI
on:
push:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate Blog
uses: quarkiverse/quarkus-roq@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
maven-executable: 'mvn'
# Deployment job
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