Skip to content

Commit d4a6016

Browse files
authored
ci(github): fix release.yaml to use label:dev in version.yaml (#11995)
## Motivation This fixes: kumahq/kuma-website#2073 which is needed as we moved to the latest site-generator with: kumahq/kuma-website#1623. --------- Signed-off-by: Charly Molter <[email protected]>
1 parent d53a8df commit d4a6016

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ env:
2828
CHECK: ${{ inputs.check || 'false' }}
2929
EDITION: kuma
3030
MIN_VERSION: "1.2.0"
31-
USE_LABEL_IN_VERSION: "false"
3231
permissions:
3332
contents: read
3433
jobs:
@@ -45,7 +44,7 @@ jobs:
4544
- name: install-kuma-ci-tools
4645
run: |
4746
echo $(go env GOPATH)/bin >> $GITHUB_PATH
48-
go install github.com/kumahq/ci-tools/cmd/release-tool@v0.13.1
47+
go install github.com/kumahq/ci-tools/cmd/release-tool@v1.0.0
4948
- name: Generate GitHub app token
5049
id: github-app-token
5150
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
@@ -85,7 +84,7 @@ jobs:
8584
env:
8685
GITHUB_TOKEN: ${{ steps.github-app-token.outputs.token }}
8786
run: |
88-
release-tool version-file --repo ${{ github.repository }} --edition ${{ env.EDITION }} --min-version ${{ env.MIN_VERSION }} --use-label-for-dev=${{ env.USE_LABEL_IN_VERSION }} > versions.yml
87+
release-tool version-file --repo ${{ github.repository }} --edition ${{ env.EDITION }} --min-version ${{ env.MIN_VERSION }} > versions.yml
8988
- name: update-CHANGELOG.md
9089
env:
9190
GITHUB_TOKEN: ${{ steps.github-app-token.outputs.token }}

0 commit comments

Comments
 (0)