Skip to content

Commit aa3191c

Browse files
committed
new: use goreleaser for publishing
1 parent 17dd91f commit aa3191c

File tree

6 files changed

+122
-15
lines changed

6 files changed

+122
-15
lines changed

.github/workflows/publish.yml

+44-12
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
- 'v*.*.*'
77

88
jobs:
9-
publish:
10-
name: Publish for ${{ matrix.name }}
11-
runs-on: ${{ matrix.os }}
9+
build:
10+
name: Build for ${{ matrix.name }}
11+
runs-on: ${{ matrix.runner }}
1212

1313
env:
1414
CARGO: cargo
@@ -26,68 +26,70 @@ jobs:
2626
- windows-x86
2727
include:
2828
- name: linux-x86-gnu
29-
os: ubuntu-latest
29+
runner: ubuntu-latest
3030
family: linux
3131
arch: x86_64
3232
target: x86_64-unknown-linux-gnu
3333
archiver: tar.gz
3434
asset: hl-linux-x86_64-gnu.tar.gz
35+
skip: true
3536
- name: linux-x86-musl
36-
os: ubuntu-latest
37+
runner: ubuntu-latest
3738
family: linux
3839
arch: x86_64
3940
target: x86_64-unknown-linux-musl
4041
archiver: tar.gz
4142
asset: hl-linux-x86_64-musl.tar.gz
4243
cross: true
4344
- name: linux-arm-gnu
44-
os: ubuntu-latest
45+
runner: ubuntu-latest
4546
family: linux
4647
arch: aarch64
4748
target: aarch64-unknown-linux-gnu
4849
archiver: tar.gz
4950
asset: hl-linux-arm64-gnu.tar.gz
5051
cross: true
52+
skip: true
5153
- name: linux-arm-musl
52-
os: ubuntu-latest
54+
runner: ubuntu-latest
5355
family: linux
5456
arch: aarch64
5557
target: aarch64-unknown-linux-musl
5658
archiver: tar.gz
5759
asset: hl-linux-arm64-musl.tar.gz
5860
cross: true
5961
- name: macos-x86
60-
os: macos-latest
62+
runner: macos-latest
6163
family: macos
6264
arch: x86_64
6365
target: x86_64-apple-darwin
6466
archiver: tar.gz
6567
asset: hl-macos-x86_64.tar.gz
6668
- name: macos-arm
67-
os: macos-latest
69+
runner: macos-latest
6870
family: macos
6971
arch: aarch64
7072
target: aarch64-apple-darwin
7173
archiver: tar.gz
7274
asset: hl-macos-arm64.tar.gz
7375
- name: macos-universal
74-
os: macos-latest
76+
runner: macos-latest
7577
family: macos
7678
arch: '{aarch64,x86_64}'
7779
target: '{aarch64,x86_64}-apple-darwin'
7880
archiver: tar.gz
7981
asset: hl-macos.tar.gz
8082
universal: true
8183
- name: windows-x86
82-
os: windows-latest
84+
runner: windows-latest
8385
family: windows
8486
arch: x86_64
8587
target: x86_64-pc-windows-msvc
8688
archiver: 7z
8789
asset: hl-windows.zip
8890

8991
steps:
90-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v4
9193

9294
- uses: actions-rust-lang/setup-rust-toolchain@v1
9395
with:
@@ -128,9 +130,39 @@ jobs:
128130
if: matrix.archiver == 'tar.gz' && matrix.universal == true
129131
run: tar -C ./target -cz -f ${{ matrix.asset }} hl
130132

133+
- name: Store artifact
134+
if: matrix.skip != true
135+
uses: actions/upload-artifact@v4
136+
with:
137+
name: hl-${{ matrix.arch }}-${{ matrix.family }}
138+
path: target/${{ matrix.target }}/release/hl${{ matrix.family == 'windows' && '.exe' || '' }}
139+
retention-days: 1
140+
131141
- name: Upload binaries to release
142+
if: startsWith(github.ref, 'refs/tags/v')
132143
uses: svenstaro/upload-release-action@v2
133144
with:
134145
repo_token: ${{ secrets.GITHUB_TOKEN }}
135146
file: ${{ matrix.asset }}
136147
tag: ${{ github.ref }}
148+
149+
publish:
150+
name: Publish
151+
needs: [build]
152+
runs-on: ubuntu-22.04
153+
steps:
154+
- name: Checkout Git repo
155+
uses: actions/checkout@v4
156+
- uses: actions/download-artifact@v4
157+
with:
158+
path: artifacts
159+
- name: Set up Go
160+
uses: actions/setup-go@v5
161+
- name: Run GoReleaser
162+
uses: goreleaser/goreleaser-action@v5
163+
with:
164+
distribution: goreleaser
165+
version: latest
166+
args: release --clean --skip=validate
167+
env:
168+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser-hook.sh

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env bash
2+
3+
go_arch=$1
4+
go_os=$2
5+
project_name=$3
6+
7+
# Make Go -> Rust arch/os mapping
8+
case $go_arch in
9+
amd64) rust_arch='x86_64' ;;
10+
arm64) rust_arch='aarch64' ;;
11+
*) echo "unknown arch: $go_arch" && exit 1 ;;
12+
esac
13+
case $go_os in
14+
linux) rust_os='linux' ;;
15+
darwin) rust_os='macos' ;;
16+
windows) rust_os='windows' ;;
17+
*) echo "unknown os: $go_os" && exit 1 ;;
18+
esac
19+
20+
# Find artifacts and uncompress in the corresponding directory
21+
find artifacts -type f -name "${project_name}-${rust_arch}-${rust_os}" -exec mv {} dist/${project_name}_${go_os}_${go_arch} \;

.goreleaser.yaml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
project_name: hl
2+
builds:
3+
- main: build/goreleaser/stub.go
4+
goos:
5+
- linux
6+
- darwin
7+
- windows
8+
goarch:
9+
- amd64
10+
- arm64
11+
binary: hl
12+
ignore:
13+
- goos: windows
14+
goarch: arm64
15+
hooks:
16+
post:
17+
- ./.goreleaser-hook.sh {{ .Arch }} {{ .Os }} {{ .ProjectName }}
18+
checksum:
19+
name_template: "checksums.txt"
20+
changelog:
21+
sort: asc
22+
filters:
23+
exclude:
24+
- "^docs:"
25+
- "^test:"
26+
brews:
27+
- name: hl
28+
repository:
29+
owner: pamburus
30+
name: homebrew-tap
31+
branch: main
32+
pull_request:
33+
enabled: true
34+
draft: true
35+
url_template: "https://github.com/pamburus/tap/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
36+
commit_author:
37+
name: Pavel Ivanov
38+
39+
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
40+
directory: Formula
41+
homepage: "https://github.com/pamburus/hl"
42+
description: "Log viewer for JSON and logfmt logs"
43+
license: "MIT"
44+
skip_upload: auto
45+
custom_block: |
46+
head "https://github.com/pamburus/hl.git"
47+
test: |
48+
system "#{bin}/hl --version"
49+
install: |
50+
system "cargo", "install", *std_cargo_args
51+
generate_completions_from_executable(bin/"hl", "--shell-completions")

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = [".", "crate/encstr"]
44
[workspace.package]
55
repository = "https://github.com/pamburus/hl"
66
authors = ["Pavel Ivanov <[email protected]>"]
7-
version = "0.28.0"
7+
version = "0.28.1-beta.1"
88
edition = "2021"
99
license = "MIT"
1010

build/goreleaser/stub.go

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package main
2+
3+
func main() {}

0 commit comments

Comments
 (0)