Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for using the action in Org repos #4

Merged
merged 18 commits into from
Jul 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
resolving duplicate artifacts issue
ravi-kumar-pilla committed Jul 25, 2024
commit bf334d2c1bd7c8c425aead90f6790b2b25fbbf1a
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -51,9 +51,9 @@ runs:
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3
with:
name: github-pages-${{ github.sha }}
name: github-pages-${{ github.run_id }}-${{ github.run_number }}
path: "${{ inputs.project_path }}/build"
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
with:
artifact_name: github-pages-${{ github.sha }}
artifact_name: github-pages-${{ github.run_id }}-${{ github.run_number }}