-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (54 loc) · 1.51 KB
/
binaries.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
61
62
63
64
65
66
---
name: binaries
"on":
push:
branches:
- master
tags:
- v*
jobs:
binaries:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Configure aws
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: ^1.23.0
- name: Run generate
run: make generate
- name: Run release
run: make release
- name: Sign release
uses: actionhippie/gpgsign@v1
with:
private_key: ${{ secrets.GNUPG_KEY }}
passphrase: ${{ secrets.GNUPG_PASSWORD }}
detach_sign: true
files: dist/*
excludes: dist/*.sha256
- name: Upload release
id: upload
if: startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: dist/*
- name: Upload version
id: version
if: startsWith(github.ref, 'refs/tags/')
run: |
aws s3 sync dist/ s3://dl.gopad.eu/api/${{ github.ref_name }}/
- name: Upload testing
id: testing
if: startsWith(github.ref, 'refs/heads/')
run: |
aws s3 sync dist/ s3://dl.gopad.eu/api/testing/
...