forked from partiql/partiql-rust-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.54 KB
/
pr_to_gh_page_repo.yml
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
name: PR To GitHub Page Repo
on:
push:
branches:
- react-website
jobs:
send-pull-requests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Bundle
run: |
npm i
npm run build
- name: copy Bundle
run: |
mkdir -p ~/artifact
cp dist/*.wasm ~/artifact
cp dist/*.js ~/artifact
cp dist/*.txt ~/artifact
ls ~/artifact >> $GITHUB_STEP_SUMMARY
- name: checkout github page repo
uses: actions/checkout@v4
with:
repository: 'partiql/partiql.github.io'
ref: 'main'
token: ${{ secrets.ACTION_TOKEN }}
- name: port changes
run: |
# Setup the committers identity.
git config user.email "[email protected]"
git config user.name "PartiQL Team"
# port in the changes
rm -r ui/src/static
mkdir ui/src/static
cp ~/artifact/*.wasm ui/src/static
cp ~/artifact/*.js ui/src/static
cp ~/artifact/playground.js.LICENSE.txt ui/playground.js.LICENSE.txt
git add .
- name: create pull-request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.ACTION_TOKEN }}
commit-message: Update report
committer: PartiQL Team <[email protected]>
branch: update-playground
delete-branch: true
title: 'Update Playground'
body: |
Update Playground