-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (45 loc) · 1.27 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
name: Release
on:
push:
branches:
- main
tags:
- 'v*'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
with:
go-version-file: 'go.mod'
cache: true
- name: Build
run: go build -o vaultify
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@111c56156bcc6918c056dbef52164cfa583dc549 # v5.2.0
id: import_gpg
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Sign binary
run: gpg --armor --detach-sign -o vaultify.sig vaultify
env:
GPG_TTY: /dev/tty # Required to access GPG keys
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
vaultify
vaultify.sig
body: Release notes here
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIGNATURE_KEY: ${{ secrets.GPG_PASSPHRASE }}