-
Notifications
You must be signed in to change notification settings - Fork 5
102 lines (89 loc) · 2.98 KB
/
release.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
name: release
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Get the version
id: get_version
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
- name: Run tests
run: make test
- name: Prepare for release
run: |
echo ${{ steps.get_version.outputs.VERSION }} > client_env/.version
make setup-release
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: repo_name
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.repository_owner }}
- name: Build and push full client image
id: docker_build_full
uses: docker/build-push-action@v4
with:
context: .
file: client_env/Dockerfile
target: image-full
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: 'linux/amd64'
tags: |
ghcr.io/${{ steps.repo_name.outputs.lowercase }}/neo_env:latest
ghcr.io/${{ steps.repo_name.outputs.lowercase }}/neo_env:${{ steps.get_version.outputs.VERSION }}
- name: Build and push light client image
id: docker_build_light
uses: docker/build-push-action@v4
with:
context: .
file: client_env/Dockerfile
target: image-light
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: 'linux/amd64,linux/arm64'
tags: |
ghcr.io/${{ steps.repo_name.outputs.lowercase }}/neo_env_light:latest
ghcr.io/${{ steps.repo_name.outputs.lowercase }}/neo_env_light:${{ steps.get_version.outputs.VERSION }}
- name: Build and push sage client image
id: docker_build_sage
uses: docker/build-push-action@v4
with:
context: .
file: client_env/Dockerfile
target: image-full-sage
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: 'linux/amd64'
tags: |
ghcr.io/${{ steps.repo_name.outputs.lowercase }}/neo_env_sage:latest
ghcr.io/${{ steps.repo_name.outputs.lowercase }}/neo_env_sage:${{ steps.get_version.outputs.VERSION }}