-
Notifications
You must be signed in to change notification settings - Fork 30
50 lines (40 loc) · 1.23 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
name: release
on:
push:
# run only against tags
tags:
- "*"
permissions:
contents: write
env:
GO_VERSION: "1.21"
jobs:
manual-release:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Install packages
run: sudo apt-get update && sudo apt-get install --yes gcc-aarch64-linux-gnu
- name: Perform cross builds
run: make cross
- name: Compress binaries
run: |
cd out
tar czf polycli_${GITHUB_REF#refs/tags/}_linux_arm64.tar.gz polycli_${GITHUB_REF#refs/tags/}_linux_arm64/
tar czf polycli_${GITHUB_REF#refs/tags/}_linux_amd64.tar.gz polycli_${GITHUB_REF#refs/tags/}_linux_amd64/
- name: Get git tag
run: echo "tag=$(git describe --tags --exact-match HEAD)" >> $GITHUB_ENV
- name: Publish binaries
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ env.tag }}
release_name: ${{ env.tag }}
file_glob: true
file: out/*.tar.gz
overwrite: true