Skip to content
This repository was archived by the owner on Jun 11, 2026. It is now read-only.

Commit d5b1d17

Browse files
committed
Refactored
1 parent fc3dd92 commit d5b1d17

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ jobs:
4040
name: Test
4141
run: go test -exec sudo -v -race -short ./...
4242

43+
-
44+
name: Clean
45+
run: ./scripts/clean.sh BIN=${{ env.BIN }}
46+
4347
-
4448
name: Release
4549
uses: goreleaser/goreleaser-action@v6

internal/flog/flog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
const (
20-
Version = "0.5.0"
20+
Version = "0.5.1"
2121
)
2222

2323
type fnlog func(string, string, bool) ([]string, error)

scripts/clean.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
BIN="bin"
3+
4+
rm -f *.zip
5+
rm -rf ${BIN}

0 commit comments

Comments
 (0)