-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from gradle/previews
Enable website previews for the Cookbook
- Loading branch information
Showing
3 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,17 @@ jobs: | |
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
packages: read | ||
pull-requests: write | ||
|
||
env: | ||
PR_PATH: pull/${{github.event.number}} | ||
DOMAIN: gradle.github.io | ||
PREVIEW_REPO: community-site-preview | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -28,3 +39,27 @@ jobs: | |
|
||
- name: Build the docs | ||
run: mkdocs build | ||
|
||
- name: Deploy to PR preview | ||
uses: peaceiris/actions-gh-pages@v4 | ||
if: github.ref != 'refs/heads/main' | ||
with: | ||
deploy_key: ${{ secrets.PREVIEW_DEPLOYMENT_KEY }} | ||
external_repository: gradle/${{ env.PREVIEW_REPO }} | ||
publish_dir: ./_site | ||
destination_dir: ${{ env.PR_PATH }} | ||
|
||
- name: Update comment | ||
uses: hasura/[email protected] | ||
if: github.ref != 'refs/heads/main' | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
number: ${{ github.event.number }} | ||
id: deploy-preview | ||
message: > | ||
A preview of ${{ github.event.after }} is uploaded and can be seen here: | ||
✨ https://${{ env.DOMAIN }}/${{ env.PREVIEW_REPO }}/${{ env.PR_PATH}}/ ✨ | ||
Changes may take a few minutes to propagate. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Delete preview on PR close | ||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
delete_preview: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
PR_PATH: pull/${{github.event.number}} | ||
DOMAIN: gradle.github.io | ||
PREVIEW_REPO: community-site-preview | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
steps: | ||
- name: make empty dir | ||
run: mkdir public | ||
|
||
- name: delete folder | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
deploy_key: ${{ secrets.PREVIEW_DEPLOYMENT_KEY }} | ||
external_repository: gradle/${{ env.PREVIEW_REPO }} | ||
publish_dir: ./public | ||
destination_dir: ${{ env.PR_PATH }} | ||
|
||
- name: Comment on PR | ||
uses: hasura/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
number: ${{ github.event.number }} | ||
id: deploy-preview | ||
message: > | ||
🪓 PR closed, deleted preview at https://github.com/${{ env.PREVIEW_REPO }}/tree/gh-pages/${{ env.PR_PATH }}/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters