Skip to content

Commit

Permalink
use same artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
sumn2u committed Mar 26, 2024
1 parent dd83131 commit fdeabf7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Upload Documentation Artifact
uses: actions/upload-artifact@v3
with:
name: docs
name: docs # Artifact name matches deployment
path: ./docs

# Single deploy job since we're just deploying
Expand All @@ -55,8 +55,11 @@ jobs:
- name: Download Documentation Artifact
uses: actions/download-artifact@v3
with:
name: docs
name: docs # Artifact name matches uploaded artifact
path: ./docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
artifact_name: docs # Artifact name matches uploaded artifact
# Other deployment options like token, timeout, etc. (if needed)

0 comments on commit fdeabf7

Please sign in to comment.