-
-
Notifications
You must be signed in to change notification settings - Fork 23
53 lines (44 loc) · 1.45 KB
/
build.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
name: build
on:
push:
jobs:
frontend:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 22
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 9
run_install: false
- name: Install dependencies
run: pnpm --prefix frontend/ install
- name: build frontend
run: pnpm --prefix frontend/ build
- name: create frontend archive
uses: ksm2/archive-action@v1
with:
format: "tar.gz"
name: frontend
root-directory: "frontend/dist/"
- name: commit to transcribee-frontend-releases repo
if: github.ref == 'refs/heads/main'
shell: bash
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.FRONTEND_RELEASE_DEPLOY_KEY }}"
git config --global user.email "[email protected]"
git config --global user.name "Vegan Bug Bakery CI"
git clone [email protected]:bugbakery/transcribee-frontend-releases.git
cp frontend.tar.gz transcribee-frontend-releases/frontend-${{github.sha}}.tar.gz
cd transcribee-frontend-releases/
git add *.tar.gz
git commit -m "Add frontend build ${{github.sha}}"
git push