Surge.sh Preview #577
This file contains hidden or 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
| name: Surge.sh Preview | |
| on: | |
| workflow_run: | |
| workflows: ["Build"] | |
| types: | |
| - completed | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| preview: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| issues: write | |
| # this is unfortunately needed to be able to write comments on pull requests | |
| pull-requests: write | |
| if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' | |
| steps: | |
| - name: Download PR Artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| run-id: ${{ github.event.workflow_run.id }} | |
| name: site | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Store PR id and shaas variable | |
| id: pr | |
| run: | | |
| pr=$(<pr-id.txt) | |
| if ! [[ $pr =~ ^[0-9]+$ ]] ; then | |
| echo "PR id extracted from pr-id.txt is not a number: $pr" | |
| exit 1 | |
| fi | |
| echo "id=${pr}" >> $GITHUB_OUTPUT | |
| rm -f pr-id.txt | |
| # github.sha is not (properly)set for pull_request events | |
| if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then | |
| SHA=$(cat $GITHUB_EVENT_PATH | jq -r .pull_request.head.sha) | |
| fi | |
| echo "sha=${GITHUB_SHA}" >> $GITHUB_OUTPUT | |
| - name: Publishing to surge for preview | |
| id: deploy | |
| run: npx surge@0.23.1 ./ --domain https://jbangdev-preview-pr-${PR_ID}.surge.sh --token ${{ secrets.SURGE_TOKEN }} | |
| env: | |
| PR_ID: ${{ steps.pr.outputs.id }} | |
| - name: Update PR status comment on success | |
| uses: quarkusio/action-helpers@main | |
| with: | |
| action: maintain-one-comment | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| pr-number: ${{ steps.pr.outputs.id }} | |
| body: | | |
| 🎊 PR Preview ${{ steps.pr.outputs.sha }} has been successfully built and deployed to https://jbangdev-preview-pr-${{ steps.pr.outputs.id }}.surge.sh | |
| body-marker: <!-- Preview status comment marker --> | |
| - name: Update PR status comment on failure | |
| uses: quarkusio/action-helpers@main | |
| if: ${{ failure() }} | |
| with: | |
| action: maintain-one-comment | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| pr-number: ${{ steps.pr.outputs.id }} | |
| body: | | |
| 😭 Deploy PR Preview failed. | |
| <img width="300" src="https://user-images.githubusercontent.com/507615/90250824-4e066700-de6f-11ea-8230-600ecc3d6a6b.png"> | |
| body-marker: <!-- Preview status comment marker --> |