mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 10:28:18 -07:00
98 lines
2.9 KiB
YAML
98 lines
2.9 KiB
YAML
name: Publish
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- Build
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
publish:
|
|
permissions:
|
|
contents: read
|
|
deployments: write
|
|
|
|
name: Deploy to Cloudflare Pages
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
url: ${{ steps.cf.outputs.url }}
|
|
|
|
steps:
|
|
- name: Download workflow artifact
|
|
uses: dawidd6/action-download-artifact@e7466d1a7587ed14867642c2ca74b5bcc1e19a2d # v3.0.0
|
|
with:
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
name: jellyfin-web__prod
|
|
path: dist
|
|
|
|
- name: Publish
|
|
id: cf
|
|
uses: cloudflare/pages-action@f0a1cd58cd66095dee69bfa18fa5efd1dde93bca # 1
|
|
with:
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
projectName: jellyfin-web
|
|
branch: ${{ github.event.workflow_run.head_branch }}
|
|
directory: dist
|
|
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
pr-context:
|
|
name: 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: dawidd6/action-download-artifact@e7466d1a7587ed14867642c2ca74b5bcc1e19a2d # v3.0.0
|
|
id: pr_context
|
|
with:
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
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:
|
|
- publish
|
|
- 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.publish.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/actions-comment-pull-request@1d3973dc4b8e1399c0620d3f2b1aa5e795465308 # v2.4.3
|
|
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
|