-
Notifications
You must be signed in to change notification settings - Fork 22
166 lines (159 loc) · 4.27 KB
/
build-tag.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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
name: Create tagged release
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Action Checkout
uses: actions/checkout@v4
-
name: Setup Golang
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache-dependency-path: ./go.sum
-
name: Generate
run: go generate .
-
name: Test
run: go test -v ./...
create_release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
tag: ${{ steps.tag.outputs.tag }}
steps:
# -
# name: Action Checkout
# uses: actions/checkout@v4
-
name: Output TAG
id: tag
run: |
export RELEASE_VERSION="${GITHUB_REF#refs/*/}"
echo "tag=${RELEASE_VERSION}"
echo "tag=${RELEASE_VERSION}" >> "$GITHUB_OUTPUT"
-
name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ steps.tag.outputs.tag }}
draft: true
prerelease: false
# -
# name: Upload Certificates
# uses: zyxkad/upload-release-asset-dir@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_dir: ./cert
build:
runs-on: ubuntu-latest
needs:
- create_release
- test
steps:
-
name: Action Checkout
uses: actions/checkout@v4
-
name: Setup Golang
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache-dependency-path: ./go.sum
-
name: Generate
run: go generate .
-
name: Build
env:
TAG: ${{ needs.create_release.outputs.tag }}
run: bash ./scripts/build.sh
-
name: Upload Release Assets
uses: zyxkad/upload-release-asset-dir@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_dir: ./output
build-windows:
runs-on: windows-2022
needs:
- create_release
steps:
-
name: Action Checkout
uses: actions/checkout@v4
-
name: Setup Golang
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache-dependency-path: ./go.sum
-
name: Generate
run: go generate .
-
name: Test
run: go test -v ./...
-
name: Run build-windows.exe
env:
TAG: ${{ needs.create_release.outputs.tag }}
CODE_SIGN_PFX: ${{ secrets.CODE_SIGN_PFX }}
CODE_SIGN_PFX_PASSWORD: ${{ secrets.CODE_SIGN_PFX_PASSWORD }}
run: go run ./scripts/build-windows.go
-
name: Upload Release Assets
uses: zyxkad/upload-release-asset-dir@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_dir: ./output
build-docker:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- test
steps:
-
name: Action Checkout
uses: actions/checkout@v4
-
name: Get current tag
run: echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
craftmine/go-openbmclapi:latest
craftmine/go-openbmclapi:${{env.TAG}}
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max