Skip to content

Commit 43fd96d

Browse files
committed
fix cloudflare action
1 parent 2a682d2 commit 43fd96d

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,17 @@ jobs:
6060
needs: build
6161
steps:
6262
- name: Download artifact
63-
uses: actions/download-pages-artifact@v1
63+
uses: actions/download-artifact@v4
6464
with:
65+
name: github-pages
6566
path: _site
6667

68+
- name: Extract artifact
69+
run: |
70+
cd _site
71+
tar -xvf artifact.tar
72+
rm artifact.tar
73+
6774
- name: Deploy to Cloudflare Pages
6875
id: deployment
6976
uses: cloudflare/wrangler-action@v3

0 commit comments

Comments
 (0)