From 7842abf57d133bb4356e1c07fcf092ef8a50253c Mon Sep 17 00:00:00 2001 From: CyberMind Date: Sat, 25 Jul 2026 12:51:30 +0200 Subject: [PATCH] ci: publish landing page with GitHub Pages (ref #904) --- .github/workflows/pages.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 00000000..a331dc57 --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,34 @@ +name: Deploy SecuBox landing page + +on: + push: + branches: [master] + paths: + - "docs/landing/**" + - ".github/workflows/pages.yml" + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: pages + cancel-in-progress: true + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/configure-pages@v5 + - uses: actions/upload-pages-artifact@v3 + with: + path: docs/landing + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4