-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (48 loc) · 1.35 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
name: release
on:
push:
branches:
- master
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
cache: true
- run: echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- run: echo "SHA=$(git show --no-patch --no-notes --date=short-local --pretty='%as-%h')" >> $GITHUB_ENV
env:
TZ: UTC
- run: go build -o dist/github-bot -trimpath -ldflags "-X 'main.version=${SHA}'"
name: Build Binary
env:
CGO_ENABLED: "0"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: "ghcr.io/bangumi/github-bot"
tags: |
type=sha,prefix={{branch}}-
type=ref,event=branch
type=ref,event=branch,suffix=-${{ env.SHA }}
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}