-
Notifications
You must be signed in to change notification settings - Fork 7
41 lines (36 loc) · 964 Bytes
/
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
name: Build and push
on:
push:
branches: [master]
paths:
- "src/**"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: "uwu/neptune-builds"
path: "builds"
token: ${{ secrets.LINK_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: |
npm i -g pnpm
pnpm i
- name: Build
run: npm run build
- name: Push builds
run: |
rm $GITHUB_WORKSPACE/builds/* || true
cp -r dist/* $GITHUB_WORKSPACE/builds || true
cd $GITHUB_WORKSPACE/builds
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add .
git commit -m "Build $GITHUB_SHA" || exit 0
git push