-
Notifications
You must be signed in to change notification settings - Fork 6
46 lines (39 loc) · 1.32 KB
/
server.yaml
File metadata and controls
46 lines (39 loc) · 1.32 KB
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
name: server
on:
push:
branches:
- main
paths:
- 'server/**'
- '.github/workflows/server.yaml'
permissions:
contents: write
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: '1.22.3'
- name: Download tools
run: |-
go install github.com/jzero-io/gorename@latest
go install github.com/jaronnie/grum@latest
- name: Upload to jaronnie/jzero-admin-deploy-server
run: |
cd server
gorename github.com/jzero-io/jzero-admin/server/internal github.com/jzero-io/jzero-admin/server/server
cd ..
GITHUB_TOKEN=${{ secrets.ACCESS_TOKEN }} grum clone https://github.com/jaronnie/jzero-admin-deploy-server
cd jzero-admin-deploy-server
git config user.name "dependabot[bot]"
git config user.email "49699333+dependabot[bot]@users.noreply.github.com"
find . -type f -mindepth 1 ! -path "./api/*" ! -path "./vercel.json" ! -path "./.git/*" ! -path "./s.yaml" -exec rm -rf {} +
cp -r ../server/. .
git add .
git diff-index --quiet HEAD || git commit -m "feat(server): update"
git push -f