-
Notifications
You must be signed in to change notification settings - Fork 4
52 lines (46 loc) · 1.23 KB
/
release.yaml
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
name: release
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '^1.19'
check-latest: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.PUBLISHER_TOKEN }}
publish-to-aur:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "Publish AUR package"
uses: KSXGitHub/[email protected]
with:
commit_email: "${{ secrets.AUR_EMAIL }}"
commit_message: "Update AUR package"
commit_username: "${{ secrets.AUR_USERNAME }}"
pkgbuild: ./PKGBUILD
pkgname: sema
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
ssh_private_key: "${{ secrets.AUR_SSH_PRIVATE_KEY }}"