Skip to content

Merge pull request #182 from cybozu-go/bump-0.14.0 #28

Merge pull request #182 from cybozu-go/bump-0.14.0

Merge pull request #182 from cybozu-go/bump-0.14.0 #28

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
jobs:
image:
name: Push container images
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
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@v3
- 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."