Skip to content

Commit

Permalink
Update release docs, change build token
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-burt committed Nov 27, 2024
1 parent 088d9b8 commit 9bfe2d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Release process

1. Update changelog and version directly on main and commit locally with "update changelog, up version" comment
1. Update [CHANGELOG.md](../CHANGELOG.md) and [Makefile](../Makefile) directly on main and commit locally with "update changelog, up version" comment
* Bump minor version when upgrading marquee dependencies (jsonnet, k8s client, golang, etc.) or when making incompatible changes
1. Run `./prepare-release.sh`
1. Push to main with following command: `git push --atomic upstream main <release>`
1. Manually create a Release on GitHub by clicking "Generate Release Notes"

profit!!
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
with:
args: release --release-notes .release-notes.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include Makefile.tools

VERSION := 0.16.1
VERSION := 0.16.2
SHORT_COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo dev)
GO_VERSION := $(shell go version | awk '{ print $$3}' | sed 's/^go//')
FMT_OPTIONS := -x '**/testdata' -x site/themes -x '.vscode/*' -x dist -t jsonnet -t json -t yaml
Expand Down

0 comments on commit 9bfe2d6

Please sign in to comment.