Skip to content

Commit

Permalink
setup releaser GH action (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
sywhang authored Jul 21, 2023
1 parent 8cd1a4c commit de438f1
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 1 deletion.
61 changes: 61 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: release

on:
push:
tags: ['v*']

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x

- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Load cached dependencies
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Prepare release
run: |
set -eou pipefail
make bin/extract-changelog
# Extract target version number from the git tag and post it to
# GITHUB_ENV to make it accessible via env.VERSION in other steps.
VERSION=${{ github.ref }}
VERSION="${VERSION#refs/tags/}" # refs/tags/v1.2.3 => v1.2.3
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "Releasing $VERSION"
# Place the release notes in changes.v1.2.3.txt to grab them in the
# release step.
echo "Release notes:"
echo "----"
bin/extract-changelog $VERSION | tee changes.$VERSION.txt
echo "----"
- name: Release
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean --release-notes changes.${{ env.VERSION }}.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_CURRENT_TAG: ${{ env.VERSION }}
3 changes: 2 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
---
release:
github:
owner: golang
owner: uber
name: mock

builds:
Expand Down Expand Up @@ -33,6 +33,7 @@ archives:
checksum:
snapshot:
name_template: "snap-{{ .Commit }}"

changelog:
sort: asc
filters:
Expand Down

0 comments on commit de438f1

Please sign in to comment.