From fe0be39197c2db4ca7cf03a82dba0768dd4415c0 Mon Sep 17 00:00:00 2001 From: Adrian Kunz Date: Fri, 23 Feb 2024 17:34:09 +0100 Subject: [PATCH] ci: Add jekyll-gh-pages.yml --- .github/workflows/jekyll-gh-pages.yml | 47 +++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/jekyll-gh-pages.yml diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 0000000..b76cd4e --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,47 @@ +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + push: + branches: + - master + paths: + - '*.md' + - 'docs/**' + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v4 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + 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@v4