-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (35 loc) · 987 Bytes
/
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
name: release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
permissions:
contents: write # Allow to create a release.
jobs:
build:
name: create draft release
runs-on: ubuntu-latest
steps:
- name: Set env
run: echo "RELEASE_TAG=${GITHUB_REF##refs/tags/}" >> "$GITHUB_ENV"
- name: checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: generate release artifacts
run: |
make release-manifests RELEASE_VERSION=${{ env.RELEASE_TAG }}
- name: generate release templates
run: |
make release-templates
- name: Release
uses: softprops/action-gh-release@v2
with:
draft: true
files: out/*
generate_release_notes: true