forked from Lucky3028/terraform-provider-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (60 loc) · 1.79 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Release
on:
workflow_dispatch:
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Git as GitHub Actions Bot
uses: Lucky3028/[email protected]
- name: Install standard-version
run: npm install -g [email protected]
- name: Generate changelog
run: standard-version
- name: Push tag
run: git push origin --tags
- name: Upload CHANGELOG.md
uses: actions/upload-artifact@v3
with:
name: changelog
path: CHANGELOG.md
goreleaser:
name: Make a release on GitHub
runs-on: ubuntu-latest
needs:
- changelog
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Download CHANGELOG.md
uses: actions/download-artifact@v3
with:
name: changelog
# ここでpullし直さないと、前のjobでのタグを読み込まない
- run: git pull origin ${GITHUB_REF#refs/heads/}
- name: Set up Go
uses: actions/setup-go@v3
with:
cache: true
go-version-file: go.mod
- name: Import GPG key
id: import_gpg
uses: crazy-max/[email protected]
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: Git as GitHub Actions Bot
uses: Lucky3028/[email protected]
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --rm-dist --release-notes CHANGELOG.md
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}