forked from partiql/partiql-rust-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (51 loc) · 1.88 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
60
61
62
63
64
65
name: PR To GitHub Page Repo
on:
push:
branches:
- react-website
jobs:
send-pull-requests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Bundle
run: |
npm i
npm run build
- name: copy Bundle
run: |
mkdir -p $GITHUB_WORKSPACE/artifact
cp dist/*.wasm $GITHUB_WORKSPACE/artifact
cp dist/*.js $GITHUB_WORKSPACE/artifact
cp dist/*.txt $GITHUB_WORKSPACE/artifact
ls $GITHUB_WORKSPACE/artifact >> $GITHUB_STEP_SUMMARY
- name: Send pull-request
run: |
REPOSITORY="partiql/partiql.github.io"
FOLDER="bin/$REPOSITORY"
BRANCH_NAME="Update-Playground"
git clone [email protected]:partiql/partiql.github.io.git $FOLDER
echo "clone completed"
cd $FOLDER
# Setup the committers identity.
git config user.email "[email protected]"
git config user.name "PartiQL Team"
# Create a new feature branch for the changes.
git checkout -b $BRANCH_NAME
# Remove Static Folder
rm -rf $FOLDER/ui/src/static
mkdir $FOLDER/ui/src/static
cp $GITHUB_WORKSPACE/artifact/*.wasm $FOLDER/ui/src/static
cp $GITHUB_WORKSPACE/artifact/*.js $FOLDER/ui/src/static
cp $GITHUB_WORKSPACE/artifact/playground.js.LICENSE.txt $FOLDER/ui/playground.js.LICENSE.txt
# Commit the changes and push the feature branch to origin
git add .
git commit -m "update playground"
git push origin $BRANCH_NAME
gh pr create \
--body "Port From ${{ github.head_ref }}. Commit: ${{ github.sha }}" \
--title "Update Playground" \
--head "$BRANCH_NAME" \
--base "main"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}