We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9e8a65 commit 744bce4Copy full SHA for 744bce4
.github/workflows/cd.yml
@@ -25,7 +25,7 @@ jobs:
25
- name: Set major version
26
run: echo "MAJOR_VERSION=v${{ steps.version.outputs.major }}" >> $GITHUB_ENV
27
- name: Subtract
28
- run: echo "DELETE_VERSION=$((${{ github.event.inputs.majorVersion }}-2))" >> $GITHUB_ENV
+ run: echo "DELETE_VERSION=$((${{ steps.version.outputs.major }}-2))" >> $GITHUB_ENV
29
30
# Set tag as env variable
31
- name: Set tag as env variable
@@ -70,7 +70,7 @@ jobs:
70
uses: './.github/actions/helm-delivery'
71
with:
72
task: 'remove'
73
- release: '${{ env.DELETE_VERSION }}'
+ release: 'v${{ env.DELETE_VERSION }}'
74
namespace: '${{ env.NAMESPACE }}'
75
version: '${{ env.TAG }}'
76
chart: 'kubernetes-versioning'
0 commit comments