Skip to content

Commit e229672

Browse files
committed
update release instructions
1 parent e767d23 commit e229672

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.goreleaser.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,19 @@ brews:
4040
branch: main
4141
directory: Formula
4242
description: "Kernel CLI"
43-
homepage: "https://docs.onkernel.com"
44-
url_template: "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/{{ .Version }}/{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}.tar.gz"
43+
homepage: "https://github.com/onkernel/cli"
4544
test: |
4645
system "#{bin}/kernel", "--version"
4746
4847
npms:
4948
- name: "@onkernel/cli"
5049
repository: "https://github.com/onkernel"
51-
bugs: https://github.com/onkernel/kernel/issues
50+
bugs: https://github.com/onkernel/cli/issues
5251
description: Kernel CLI
5352
homepage: https://docs.onkernel.com
5453
license: MIT
5554
author: "Rafael Garcia <[email protected]>"
5655
access: public
57-
url_template: "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/{{ .Version }}/{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}.tar.gz"
5856
keywords:
5957
- kernel
6058
- cli
@@ -93,7 +91,7 @@ changelog:
9391
release:
9492
name_template: "Kernel CLI v{{ .Version }}"
9593
footer: |
96-
**Full Changelog**: https://github.com/onkernel/kernel/compare/{{ .PreviousTag }}...{{ .Tag }}
94+
**Full Changelog**: https://github.com/onkernel/cli/compare/{{ .PreviousTag }}...{{ .Tag }}
9795
9896
## What to do next?
9997

DEVELOPMENT.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ Prerequisites:
6666

6767
- export a `GITHUB_TOKEN` with repo and write:packages permissions: https://github.com/settings/tokens/new?scopes=repo,write:packages.
6868

69-
- Make sure you are logged in to the prod AWS account with `aws sso login --sso-session=kernel` + `export AWS_PROFILE=kernel-prod`. This is necessary to publish releases to S3.
70-
7169
With a clean tree on the branch you want to release (can be main or a pr branch you're about to merge, doesn't matter), run:
7270

7371
```bash
@@ -82,7 +80,7 @@ To actually release, run:
8280
```bash
8381
# use `git tag -l | grep cli` to find the latest version and what you want to bump it to
8482
export VERSION=0.1.1
85-
git tag -a cli/v$VERSION -m "Bugfixes"
86-
git push origin cli/v$VERSION
83+
git tag -a v$VERSION -m "Bugfixes"
84+
git push origin v$VERSION
8785
make release
8886
```

0 commit comments

Comments
 (0)