Skip to content

Commit 15c2870

Browse files
committed
fix repo references in version-bump
1 parent 2b757fc commit 15c2870

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/version-bump.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
source_branch:
77
required: true
88
type: string
9-
default: 'main'
9+
default: "main"
1010
ic_version:
1111
required: true
1212
type: string
13-
default: '0.0.0'
13+
default: "0.0.0"
1414
helm_chart_version:
1515
required: true
1616
type: string
17-
default: '0.0.0'
17+
default: "0.0.0"
1818

1919
defaults:
2020
run:
@@ -36,13 +36,13 @@ jobs:
3636

3737
- name: Replace Versions
3838
run: |
39-
yq -i e '.version = env(CHART_VERSION) | .appVersion = env(IC_VERSION)' kubernetes-ingress/charts/nginx-ingress/Chart.yaml
40-
cat kubernetes-ingress/charts/nginx-ingress/Chart.yaml
41-
cat > kubernetes-ingress/.github/data/version.txt << EOF
39+
yq -i e '.version = env(CHART_VERSION) | .appVersion = env(IC_VERSION)' charts/nginx-ingress/Chart.yaml
40+
cat charts/nginx-ingress/Chart.yaml
41+
cat > .github/data/version.txt << EOF
4242
IC_VERSION=${IC_VERSION}
4343
HELM_CHART_VERSION=${CHART_VERSION}
4444
EOF
45-
cat kubernetes-ingress/.github/data/version.txt
45+
cat .github/data/version.txt
4646
env:
4747
IC_VERSION: ${{ inputs.ic_version }}
4848
CHART_VERSION: ${{ inputs.helm_chart_version }}

0 commit comments

Comments
 (0)