Skip to content

Commit

Permalink
chore: switch to action download artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
Caslus committed Nov 28, 2024
1 parent 04c858d commit a4c8810
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,21 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download build artifact
uses: actions/download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: main
name: build
path: dist/
- name: Download resume artifact
uses: actions/download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: main
name: resumes
path: dist/
- name: ls for debugging
run: ls -la && cd dist && ls -la
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Expand Down

0 comments on commit a4c8810

Please sign in to comment.