Swapping v1 and v2 sites

This commit is contained in:
2025-02-28 11:45:59 +11:00
parent 4282268f3d
commit 2eb6820da8
2 changed files with 28 additions and 2 deletions

46
.github/workflows/pages-deploy.yml vendored Normal file
View File

@@ -0,0 +1,46 @@
name: Deploy from the mirror
on:
# Runs on pushes targeting the docs branch
push:
branches: ["mirror"]
# 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
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@v5
- 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