From 1d404259160c9c05bdf77c9c42ed2d107b2eabe7 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 20 Apr 2025 16:13:55 +0200 Subject: [PATCH 1/4] Create static.yml --- .github/workflows/static.yml | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..bfe62ff --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["devel"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +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: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 From c97c39ed3327e517f33d81ee3038866efce0defc Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 20 Apr 2025 17:12:31 +0200 Subject: [PATCH 2/4] Renamed static.yml to docs.yml --- .github/workflows/{static.yml => docs.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{static.yml => docs.yml} (100%) diff --git a/.github/workflows/static.yml b/.github/workflows/docs.yml similarity index 100% rename from .github/workflows/static.yml rename to .github/workflows/docs.yml From 1afbaa061fd5b088a8ea540d1d40f5490ca91a01 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 20 Apr 2025 17:13:42 +0200 Subject: [PATCH 3/4] Run docs on push to max-models-patch-1 --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bfe62ff..eefb6ac 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -4,7 +4,7 @@ name: Deploy static content to Pages on: # Runs on pushes targeting the default branch push: - branches: ["devel"] + branches: ["max-models-patch-1"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: From 08bd328fd3feee5b9fe193d1ba712497259d1a24 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 20 Apr 2025 17:44:54 +0200 Subject: [PATCH 4/4] Trigger CI