Skip to content

Commit

Permalink
ci: replace release/v2 by release/v3 (#4337)
Browse files Browse the repository at this point in the history
Akin to #4319 , but for the mainline: We now use the release/v3 branch
as the tag for "where's the latest v3"

https://coveord.atlassian.net/browse/KIT-3497
  • Loading branch information
louis-bompart authored Aug 28, 2024
1 parent a380ae6 commit f7fd688
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
ref: 'release/v2'
ref: 'release/v3'
- uses: ./.github/actions/setup
- name: Promote NPM package to production
run: npm run promote:npm:latest
Expand All @@ -67,7 +67,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
ref: 'release/v2'
ref: 'release/v3'
- uses: ./.github/actions/setup
- name: Notify Docs
run: npm run notify:docs
Expand All @@ -84,7 +84,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
ref: 'release/v2'
ref: 'release/v3'
- uses: ./.github/actions/setup
- uses: ./.github/actions/setup-sfdx
- name: Promote SFDX package to production
Expand Down
2 changes: 1 addition & 1 deletion utils/release/git-publish-all.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ process.chdir(process.env.INIT_CWD);

// Current release branch
// TODO v3: Bump to release/v3
const currentReleaseBranch = 'release/v2';
const currentReleaseBranch = 'release/v3';
await octokit.rest.git.updateRef({
owner: REPO_OWNER,
repo: REPO_NAME,
Expand Down

0 comments on commit f7fd688

Please sign in to comment.