Skip to content

Commit 7fc961f

Browse files
committed
Set env var
1 parent 3f79610 commit 7fc961f

File tree

2 files changed

+6
-17
lines changed

2 files changed

+6
-17
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ jobs:
4949
- name: Run GoReleaser
5050
uses: goreleaser/goreleaser-action@v5
5151
with:
52-
version: latest
53-
args: release --snapshot --clean
52+
version: 1.22.1
53+
args: release --clean
5454
env:
55+
SIGNADOT_IMAGE_SUFFIX: ''
5556
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5657

5758

README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,9 @@ go build ./cmd/signadot
2323

2424
## Release
2525

26-
To release the CLI, you'll need [GoReleaser](https://goreleaser.com/) as well as
27-
a GiHtub token with write permissions to Signadot's repos.
28-
29-
Check out the desired commit and then push a new tag:
30-
31-
```sh
32-
git tag -a -m 'Release vX.Y.Z' vX.Y.Z
33-
git push origin vX.Y.Z
34-
```
35-
36-
Then run GoReleaser, which will build and push all release artifacts:
37-
38-
```sh
39-
GITHUB_TOKEN=... make release
40-
```
26+
To release the CLI, you can use the release Github action.
27+
Push a new tag that matches the format `v[0-9]+.[0-9]+.[0-9]`
28+
and it will push new release artifacts and update brew.
4129

4230
## See Also
4331

0 commit comments

Comments
 (0)