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

Adding the post-page-artifact job #456

Merged
merged 5 commits into from
Oct 24, 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
21 changes: 21 additions & 0 deletions .github/workflows/website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
page_artifact_id: ${{ steps.upload.outputs.artifact_id }}
steps:
- uses: actions/checkout@v4
- uses: quarto-dev/quarto-actions/setup@v2
Expand Down Expand Up @@ -91,6 +93,7 @@ jobs:
# Upload
- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
id: upload
with:
name: github-pages
path: docs/build/html/
Expand All @@ -115,3 +118,21 @@ jobs:
with:
artifact_name: github-pages
preview: true

post-page-artifact:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Post comment preview
if: ${{ github.event_name == 'pull_request' }}
run: |
gh pr comment ${{ github.event.number }} --body \
"Thank you for your contribution @${{ github.triggering_actor }}:rocket:! Your page is ready to preview :point_right: [here](https://github.com/${{github.repository}}/actions/runs/${{ github.run_id }}/artifacts/${{ needs.build.outputs.page_artifact_id }}) :point_left:!"