fix action

This commit is contained in:
Henry Hiles 2026-03-16 22:33:53 -04:00
commit 2b8cef9e93
No known key found for this signature in database

View file

@ -31,10 +31,17 @@ jobs:
- name: Build with Astro
run: deno run astro build
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
- name: Create artifact
run: |
tar \
--dereference --hard-dereference \
-cvf "$RUNNER_TEMP/artifact.tar" \
-C ./dist .
- uses: actions/upload-artifact@v4
with:
path: dist
name: github-pages
path: ${{ runner.temp }}/artifact.tar
deploy:
environment:
@ -46,4 +53,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5
uses: actions/deploy-pages@v4.0.5