Skip to content

Commit dd430cf

Browse files
committedMar 4, 2025
updated workflow
1 parent 93fe559 commit dd430cf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎.github/workflows/deploy.example.yml

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
uses: actions/checkout@v2
2323
- name: Install, build, and upload your site
2424
uses: withastro/action@v0
25+
- name: Upload artifact
26+
uses: actions/upload-artifact@v3
2527
# with:
2628
# path: . # The root location of your Astro project inside the repository. (optional)
2729
# node-version: 16 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
@@ -34,6 +36,8 @@ jobs:
3436
name: github-pages
3537
url: ${{ steps.deployment.outputs.page_url }}
3638
steps:
39+
- name: Download artifact
40+
uses: actions/download-artifact@v3
3741
- name: Deploy to GitHub Pages
3842
id: deployment
3943
uses: actions/deploy-pages@v1

0 commit comments

Comments
 (0)