-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (49 loc) · 1.29 KB
/
PREview-update.yaml
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
name: "PREview: Update"
on:
pull_request:
types: [synchronize]
jobs:
data:
runs-on: ubuntu-latest
outputs:
URL: ${{ steps.data.outputs.URL }}
BUCKET: ${{ steps.data.outputs.BUCKET }}
BRANCH: ${{ steps.data.outputs.BRANCH }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Obtain URL
id: data
uses: ./.github/actions/PREview-data
- name: Verify outputs
shell: bash
id: out
run: echo ${{ steps.data.outputs.BUCKET }}
build:
uses: ./.github/workflows/_build.yaml
with:
output_dir: build
secrets: inherit
deploy-update:
needs: [data, build]
uses: ./.github/workflows/_deploy.yaml
with:
src_dir: build
bucket: ${{ needs.data.outputs.BUCKET }}/docs
secrets: inherit
notify:
runs-on: ubuntu-latest
needs: [deploy-update]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Obtain URL
uses: ./.github/actions/PREview-data
- uses: mshick/add-pr-comment@v2
if: success()
continue-on-error: true
with:
message: |
**PREview has been updated at ${{ env.URL }}**
repo-token: ${{ secrets.GITHUB_TOKEN }}
allow-repeats: true