-
-
Notifications
You must be signed in to change notification settings - Fork 2k
139 lines (122 loc) · 5.73 KB
/
upload-dev-build.yml
File metadata and controls
139 lines (122 loc) · 5.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: Upload dev build from PR
on:
workflow_run:
workflows: ["Publish Dist"] # publish-dist.yml
types:
- completed
workflow_dispatch:
inputs:
pr_number:
description: 'PR Number to deploy'
required: false
run_id:
description: 'The Run ID of the CI workflow that has the artifact'
required: true
jobs:
upload:
runs-on: ubuntu-latest
if: |
github.event_name == 'workflow_dispatch' ||
(
github.event_name == 'workflow_run' &&
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success'
)
steps:
- name: Download build artifact
id: download-artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: dist # uploaded by publish-dist.yml > publish-dist
run-id: ${{ github.event.workflow_run.id || inputs.run_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
path: temp-dist
- name: Setup metadata and prepare folders
id: setup-metadata
env:
GH_TOKEN: ${{ github.token }}
PR_NUM: ${{ github.event.workflow_run.pull_requests[0].number || inputs.pr_number }}
run: |
# Get SHA from triggering workflow, or from manual input
if [ "${{ github.event_name }}" == "workflow_run" ]; then
SHA="${{ github.event.workflow_run.head_sha }}"
else
echo "Fetching latest SHA for PR #${PR_NUM}..."
if [ -n "${PR_NUM}" ]; then
SHA=$(gh pr view "${PR_NUM}" --repo "${{ github.repository }}" --json headRefOid --template '{{.headRefOid}}')
fi
fi
# Validate that we have a SHA
if [ -z "${SHA}" ]; then
echo "Failed to get commit SHA, exiting"
exit 1
fi
# If PR_NUM is empty (this is the case for forks) get PR number using SHA
if [ -z "${PR_NUM}" ]; then
PR_NUM=$(gh pr list --search "sha:${SHA}" --state open --json number --jq '.[0].number')
fi
# Validate that we have a PR number and that it is less than 5 characters
if [ -z "${PR_NUM}" ] || [ ${#PR_NUM} -gt 5 ]; then
echo "Failed to get PR number, exiting (PR_NUM=${PR_NUM})"
exit 1
fi
SHORT_SHA=${SHA::7}
UPLOAD_DIR_NAME="upload"
echo "SHA: ${SHA}"
echo "Short SHA: ${SHORT_SHA}"
echo "PR number: ${PR_NUM}"
mkdir -p "${UPLOAD_DIR_NAME}/pr-${PR_NUM}/latest"
mkdir -p "${UPLOAD_DIR_NAME}/pr-${PR_NUM}/${SHORT_SHA}"
# Copy all 3 artifacts (plotly.js, plotly.min.js, plot-schema.json) to /latest/
cp temp-dist/plotly.js "${UPLOAD_DIR_NAME}/pr-${PR_NUM}/latest/plotly.js"
cp temp-dist/plotly.min.js "${UPLOAD_DIR_NAME}/pr-${PR_NUM}/latest/plotly.min.js"
cp temp-dist/plot-schema.json "${UPLOAD_DIR_NAME}/pr-${PR_NUM}/latest/plot-schema.json"
# Copy only plotly.min.js to /$SHORT_SHA/
cp temp-dist/plotly.min.js "${UPLOAD_DIR_NAME}/pr-${PR_NUM}/${SHORT_SHA}/plotly.min.js"
UPLOAD_DIR_FULL_PATH=$(pwd)/${UPLOAD_DIR_NAME}/
echo "Created directory ${UPLOAD_DIR_FULL_PATH} with the following contents:"
echo "$(ls -lR ${UPLOAD_DIR_FULL_PATH})"
echo "PR_NUM=${PR_NUM}" >> $GITHUB_OUTPUT
echo "SHA=${SHA}" >> $GITHUB_OUTPUT
echo "SHORT_SHA=${SHORT_SHA}" >> $GITHUB_OUTPUT
- name: Generate GitHub App token
id: generate-token
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 #v3.1.1
with:
client-id: ${{ vars.DEV_DEPLOY_APP_ID }}
private-key: ${{ secrets.DEV_DEPLOY_APP_PRIVATE_KEY }}
owner: plotly
repositories: plotly.js-dev-builds
- name: Check out plotly.js-dev-builds repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
repository: plotly/plotly.js-dev-builds
token: ${{ steps.generate-token.outputs.token }} # token from previous step
path: plotly.js-dev-builds
- name: Commit and push files
id: commit-and-push
run: |
# 1. Move 'upload' directory into repo folder and cd into repo root
mkdir -p plotly.js-dev-builds/upload/
cp -r upload/ plotly.js-dev-builds/
cd plotly.js-dev-builds
# 2. Configure git
git config user.name "plotly.js-pr-upload"
git config user.email "<>"
# 3. add, commit, and push
git add upload/
# Only commit if there are changes
if git diff --staged --quiet; then
echo "No changes to commit"
else
git commit -m "Deploy build for PR #${{ steps.setup-metadata.outputs.PR_NUM }} (commit ${{ steps.setup-metadata.outputs.SHORT_SHA }})"
git push origin main
fi
- name: Generate summary
run: |
BASE="https://plotly.github.io/plotly.js-dev-builds/upload/pr-${{ steps.setup-metadata.outputs.PR_NUM }}"
echo "### PR Build Uploaded" >> $GITHUB_STEP_SUMMARY
echo "Builds for PR #${{ steps.setup-metadata.outputs.PR_NUM }} can be accessed at:" >> $GITHUB_STEP_SUMMARY
echo "- Latest build for this PR: [$BASE/latest/plotly.min.js]($BASE/latest/plotly.min.js)" >> $GITHUB_STEP_SUMMARY
echo "- Build for this commit: [$BASE/${{ steps.setup-metadata.outputs.SHA }}/plotly.min.js]($BASE/${{ steps.setup-metadata.outputs.SHORT_SHA }}/plotly.min.js)" >> $GITHUB_STEP_SUMMARY
echo "The above links should start working a minute or two after this job completes." >> $GITHUB_STEP_SUMMARY