Skip to content

Commit 9814f68

Browse files
chore: tagged the wrong branch (backport #18407) (#18408)
Co-authored-by: Julien Robert <[email protected]>
1 parent e36a25c commit 9814f68

File tree

4 files changed

+56
-52
lines changed

4 files changed

+56
-52
lines changed

.github/workflows/release.yml

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
1-
name: Release
2-
# This workflow helps with creating releases.
3-
# This job will only be triggered when a tag (vX.X.x) is pushed
4-
on:
5-
push:
6-
# Sequence of patterns matched against refs/tags
7-
tags:
8-
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
1+
# name: Release
2+
# # This workflow helps with creating releases.
3+
# # This job will only be triggered when a tag (vX.X.x) is pushed
4+
# on:
5+
# push:
6+
# # Sequence of patterns matched against refs/tags
7+
# # tags:
8+
# # - "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
99

10-
permissions:
11-
contents: read
10+
# permissions:
11+
# contents: read
1212

13-
jobs:
14-
release:
15-
permissions:
16-
contents: write # for goreleaser/goreleaser-action to create a GitHub release
17-
runs-on: ubuntu-latest
18-
steps:
19-
- uses: actions/checkout@v3
20-
- name: Install Go
21-
uses: actions/setup-go@v4
22-
with:
23-
go-version: "1.21"
24-
check-latest: true
25-
- name: Unshallow
26-
run: git fetch --prune --unshallow
27-
- name: Create release
28-
uses: goreleaser/goreleaser-action@v3
29-
with:
30-
args: release --rm-dist --release-notes ./RELEASE_NOTES.md
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
# jobs:
14+
# release:
15+
# permissions:
16+
# contents: write # for goreleaser/goreleaser-action to create a GitHub release
17+
# runs-on: ubuntu-latest
18+
# steps:
19+
# - uses: actions/checkout@v4
20+
# - name: Install Go
21+
# uses: actions/setup-go@v4
22+
# with:
23+
# go-version: "1.21"
24+
# check-latest: true
25+
# - name: Unshallow
26+
# run: git fetch --prune --unshallow
27+
# - name: Create release
28+
# uses: goreleaser/goreleaser-action@v3
29+
# with:
30+
# args: release --rm-dist --release-notes ./RELEASE_NOTES.md
31+
# env:
32+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3333

34-
release-success:
35-
needs: release
36-
if: ${{ success() }}
37-
runs-on: ubuntu-latest
38-
steps:
39-
- name: Notify Slack on success
40-
uses: rtCamp/[email protected].0
41-
env:
42-
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
43-
SLACK_CHANNEL: cosmos-tech
44-
SLACK_USERNAME: Cosmos SDK Release Bot
45-
SLACK_ICON: https://avatars.githubusercontent.com/t/5997665?size=64
46-
SLACK_COLOR: good
47-
SLACK_TITLE: "Cosmos SDK ${{ github.ref_name }} is tagged :tada:"
48-
SLACK_MESSAGE: "@channel :point_right: https://github.com/cosmos/cosmos-sdk/releases/tag/${{ github.ref_name }}"
49-
SLACK_FOOTER: ""
50-
SLACK_LINK_NAMES: true
51-
MSG_MINIMAL: true
34+
# release-success:
35+
# needs: release
36+
# if: ${{ success() }}
37+
# runs-on: ubuntu-latest
38+
# steps:
39+
# - name: Notify Slack on success
40+
# uses: rtCamp/[email protected].1
41+
# env:
42+
# SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
43+
# SLACK_CHANNEL: cosmos-tech
44+
# SLACK_USERNAME: Cosmos SDK Release Bot
45+
# SLACK_ICON: https://avatars.githubusercontent.com/t/5997665?size=64
46+
# SLACK_COLOR: good
47+
# SLACK_TITLE: "Cosmos SDK ${{ github.ref_name }} is tagged :tada:"
48+
# SLACK_MESSAGE: "@channel :point_right: https://github.com/cosmos/cosmos-sdk/releases/tag/${{ github.ref_name }}"
49+
# SLACK_FOOTER: ""
50+
# SLACK_LINK_NAMES: true
51+
# MSG_MINIMAL: true

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ Ref: https://keepachangelog.com/en/1.0.0/
3838

3939
## [Unreleased]
4040

41-
## [v0.50.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0) - 2023-11-07
41+
## [v0.50.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.1) - 2023-11-07
42+
43+
> v0.50.0 has been retracted due to a mistake in tagging the release. Please use v0.50.1 instead.
4244
4345
### Features
4446

RELEASE_NOTES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Cosmos SDK v0.50.0 Release Notes
1+
# Cosmos SDK v0.50.1 Release Notes
22

3-
[**Official Release Announcenment**](https://blog.cosmos.network)
3+
[**Official Release Announcement**](https://blog.cosmos.network)
44

5-
💬 [**Release Discussion**](https://github.com/cosmos/community)
5+
💬 [**Release Discussion**](https://github.com/orgs/cosmos/discussions/58)
66

77
## 🚀 Highlights
88

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,8 @@ replace (
183183
)
184184

185185
retract (
186+
// false start by tagging the wrong branch
187+
v0.50.0
186188
// revert fix https://github.com/cosmos/cosmos-sdk/pull/16331
187189
v0.46.12
188190
// subject to a bug in the group module and gov module migration

0 commit comments

Comments
 (0)