Deploy ποΈ #4131
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
name: Deploy ποΈ | |
on: | |
workflow_run: | |
workflows: | |
- Quality checks ππ§ͺ | |
- Unstable release πͺ²π¦ | |
types: | |
- completed | |
jobs: | |
cf-pages: | |
name: CloudFlare Pages π | |
runs-on: ubuntu-latest | |
outputs: | |
url: ${{ steps.cf.outputs.url }} | |
steps: | |
- name: Download workflow artifact β¬οΈ | |
uses: actions/download-artifact@v4 | |
with: | |
run-id: ${{ github.event.workflow_run.id }} | |
github-token: ${{ secrets.JF_BOT_TOKEN }} | |
name: frontend | |
path: dist | |
- name: Publish to Cloudflare Pages π | |
uses: cloudflare/[email protected] | |
id: cf | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: jf-vue | |
directory: dist | |
branch: ${{ github.event.workflow_run.head_branch }} | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
pr-context: | |
name: Get PR context | |
if: ${{ always() && github.event.workflow_run.event == 'pull_request' }} | |
runs-on: ubuntu-latest | |
outputs: | |
commit: ${{ env.pr_sha }} | |
pr_number: ${{ env.pr_number }} | |
steps: | |
- name: Get PR context β¬οΈ | |
uses: actions/download-artifact@v4 | |
id: pr_context | |
with: | |
run-id: ${{ github.event.workflow_run.id }} | |
github-token: ${{ secrets.JF_BOT_TOKEN }} | |
name: PR_context | |
- name: Set PR context environment variables | |
if: ${{ steps.pr_context.conclusion == 'success' }} | |
run: | | |
echo "pr_number=$(cat PR_number)" >> $GITHUB_ENV | |
echo "pr_sha=$(cat PR_sha)" >> $GITHUB_ENV | |
compose-comment: | |
name: Compose comment | |
if: ${{ always() }} | |
uses: ./.github/workflows/job_messages.yml | |
needs: | |
- cf-pages | |
- pr-context | |
with: | |
branch: ${{ github.event.workflow_run.head_branch }} | |
commit: ${{ needs.pr-context.outputs.commit != '' && needs.pr-context.outputs.commit || github.event.workflow_run.head_sha }} | |
preview_url: ${{ needs.cf-pages.outputs.url }} | |
build_workflow_run_id: ${{ github.event.workflow_run.id }} | |
commenting_workflow_run_id: ${{ github.run_id }} | |
in_progress: false | |
comment-status: | |
name: Create comment status | |
if: | | |
always() && | |
github.event.workflow_run.event == 'pull_request' && | |
needs.pr-context.outputs.pr_number != '' | |
runs-on: ubuntu-latest | |
needs: | |
- compose-comment | |
- pr-context | |
steps: | |
- name: Update job summary in PR comment | |
uses: thollander/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }} | |
message: ${{ needs.compose-comment.outputs.msg }} | |
pr_number: ${{ needs.pr-context.outputs.pr_number }} | |
comment_tag: ${{ needs.compose-comment.outputs.marker }} | |
mode: recreate |