Skip to content

Commit d5369c5

Browse files
authored
FIX @W-20017280@ Fixing release automation (#1918)
1 parent 5751372 commit d5369c5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/create-release-branch.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
# Checkout `dev`
3030
- uses: actions/checkout@v4
3131
with:
32-
ref: 'dev'
32+
ref: "dev"
3333
# We need to set up Node and install our Node dependencies.
3434
- uses: actions/setup-node@v4
3535
with:
36-
node-version: 'lts/*' # Always use Node LTS for building dependencies.
36+
node-version: "lts/*" # Always use Node LTS for building dependencies.
3737
- run: npm install
3838
# Increment the version as desired locally, without actually committing anything.
3939
- name: Locally increment version
@@ -122,5 +122,6 @@ jobs:
122122
needs: create-release-branch
123123
uses: ./.github/workflows/run-tests.yml
124124
with:
125-
node-matrix: "[{version: 'lts/*', artifact: 'lts'}, {version: 'latest', artifact: 'latest'}]"
125+
# NOTE: We are temporarily hardcoding the `latest` version to 24.x, since 25.x is not yet supported in the CLI.
126+
node-matrix: "[{version: 'lts/*', artifact: 'lts'}, {version: '24.x', artifact: 'latest'}]"
126127
target-branch: ${{ needs.create-release-branch.outputs.branch-name }}

0 commit comments

Comments
 (0)