Skip to content

Commit

Permalink
Adding the post-page-artifact job
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Sep 22, 2024
1 parent 9bc3dae commit 4cd6674
Showing 1 changed file with 21 additions and 0 deletions.
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:!"

0 comments on commit 4cd6674

Please sign in to comment.