-
Notifications
You must be signed in to change notification settings - Fork 35
103 lines (100 loc) · 3.43 KB
/
release.yaml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: release
#触发机制,当创建tag时
on:
release:
types:
- published
jobs:
frontend-builder:
name: frontend-builder
runs-on: ubuntu-latest
steps:
- name: SetOutput
id: vars
run: echo "tag=${GITHUB_REF#refs/*/v}" >> $GITHUB_OUTPUT
- name: Checkout #Checkout代码
uses: actions/checkout@v3
- name: Set up Node
uses: actions/[email protected]
with:
node-version: '16'
- name: Yarn install
run: |
cd frontend && rm -f yarn.lock && yarn install --registry https://registry.npmmirror.com --legacy-peer-deps
yarn build
- name: print files
run: |
pwd
ls -l ./
ls -l controller/
- name: upload frontend release
uses: actions/upload-artifact@v2
with:
name: apserver-frontend
path: frontend/dist
release:
needs: [frontend-builder]
name: release
runs-on: ubuntu-latest
steps:
- name: SetOutput #处理Tag字符串并存进outputs
id: vars
run: |
echo "tag=${GITHUB_REF#refs/*/v}" >> $GITHUB_OUTPUT
- name: Checkout #Checkout代码
uses: actions/checkout@v3
- name: download frontend release
uses: actions/download-artifact@v2
with:
name: apserver-frontend
path: frontend/dist
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.19.4'
- name: Go tidy
run: |
go mod tidy
echo "GOVERSION=$(go version)" >> $GITHUB_ENV
- name: Create archives on Release #创建各种系统架构下的二进制包并上传至release assets
uses: goreleaser/[email protected]
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: print file
run: |
echo v${{ steps.vars.outputs.tag }}
ls -l apinto-build/
- name: upload release
uses: actions/upload-artifact@v2
with:
name: apinto-dashboard-release
path: apinto-build/apserver_v${{ steps.vars.outputs.tag }}_linux_amd64.tar.gz
docker-push:
needs: [release]
name: docker-push
runs-on: ubuntu-latest
steps:
- name: SetOutput
id: vars
run: echo "tag=${GITHUB_REF#refs/*/v}" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Login Docker #登录docker
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: download release
uses: actions/download-artifact@v2
with:
name: apinto-dashboard-release
path: scripts/apserver_v${{ steps.vars.outputs.tag }}_linux_amd64.tar.gz
- name: build
run: cd scripts && docker build --build-arg VERSION="v${{ steps.vars.outputs.tag }}" --build-arg APP="apserver" --build-arg DIR="." -t ${{ secrets.DOCKER_USERNAME }}/apinto-dashboard:${{ steps.vars.outputs.tag }} ./
- name: push image
run: |
docker push ${{ secrets.DOCKER_USERNAME }}/apinto-dashboard:${{ steps.vars.outputs.tag }}
docker tag ${{ secrets.DOCKER_USERNAME }}/apinto-dashboard:${{ steps.vars.outputs.tag }} ${{ secrets.DOCKER_USERNAME }}/apinto-dashboard:latest
docker push ${{ secrets.DOCKER_USERNAME }}/apinto-dashboard:latest