From 3666fcc21a19344f1c2b4f0e68c27c76c443f99f Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Sun, 29 Dec 2024 03:09:07 -0800 Subject: [PATCH] ci: add site deployment action --- .github/workflows/deploy.yml | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..33007b4 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,44 @@ +name: Deploy Quartz site to GitHub Pages using Nix + +on: + push: + branches: + - main + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Fetch all history for git info + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@main + - name: Activate Magic Cache + uses: DeterminateSystems/magic-nix-cache-action@main + - name: Build site + run: nix build + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: result/public + + deploy: + needs: build + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4