Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:
git config --global user.name Your Name
make all
make test-docker
- name: Login to GCR
uses: docker/login-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: gcr.io
username: _json_key
password: ${{ secrets.GCR_TOKEN }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup release environment
id: setup-release-env
run: |-
Expand Down
1 change: 0 additions & 1 deletion release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ To cut a new kpt release perform the following:
- If the release is an alpha or beta release and there is already a stable version available, the "set as a pre-release" check-box should be checked. Otherwise, leave it checked as "set as the latest release"
- Check the "create a discussion for this release" check-box
- Click "publish" and then verify that the github action has run and the artefacts have been produced

4 changes: 2 additions & 2 deletions release/tag/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ dockers:
- ids:
- linux-amd64
image_templates:
- "gcr.io/kpt-dev/kpt:{{ .Tag }}"
- "ghcr.io/kptdev/kpt:{{ .Tag }}"
dockerfile: "release/images/Dockerfile"
- ids:
- linux-amd64
image_templates:
- "gcr.io/kpt-dev/kpt-gcloud:{{ .Tag }}"
- "ghcr.io/kptdev/kpt-gcloud:{{ .Tag }}"
dockerfile: "release/images/Dockerfile-gcloud"
archives:
- id: archived
Expand Down
Loading