generated from cybozu-go/neco-template
-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (38 loc) · 1.12 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
name: release
on:
push:
tags:
- 'v*'
jobs:
image:
name: Push container images
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: make setup
- run: make image
- run: make tag push IMAGE_PREFIX=ghcr.io/cybozu-go/ IMAGE_TAG=${GITHUB_REF#refs/tags/v}
release:
name: Release on GitHub
needs: image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Create release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
VERSION=${GITHUB_REF#refs/tags/} # Don't remove "v" prefix.
if echo ${VERSION} | grep -q -e '-'; then PRERELEASE_FLAG=-p; fi
gh release create $VERSION $PRERELEASE_FLAG \
-t "Release $VERSION" \
-n "See [CHANGELOG.md](./CHANGELOG.md) for details."