fix: extract artifact tar in deploy-vercel-app job

This commit is contained in:
snomiao
2025-10-16 23:50:53 +00:00
parent cd2a3e549c
commit ed47ef04f6

View File

@@ -119,7 +119,13 @@ jobs:
uses: actions/download-artifact@v4
with:
name: built-pages
path: ./.pages
path: ./artifact
- name: Extract artifact
run: |
mkdir -p ./.pages
cd ./artifact
tar -xf artifact.tar -C ../.pages
# debug ls of ./.pages
- name: List ./.pages contents