Skip to content

Commit 82f3d30

Browse files
authored
Remove extra double quote in variable assignment (#8067)
1 parent fd2700e commit 82f3d30

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/image-promotion.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959
- name: Set Variables
6060
id: vars
6161
run: |
62-
echo "go_proxy="https://azr.artifactory.f5net.com/artifactory/api/go/f5-nginx-go-dev" >> $GITHUB_OUTPUT
62+
echo "go_path=$(go env GOPATH)" >> $GITHUB_OUTPUT
63+
echo "go_proxy=https://azr.artifactory.f5net.com/artifactory/api/go/f5-nginx-go-dev" >> $GITHUB_OUTPUT
6364
source .github/data/version.txt
6465
echo "ic_version=${IC_VERSION}" >> $GITHUB_OUTPUT
6566
echo "chart_version=${HELM_CHART_VERSION}" >> $GITHUB_OUTPUT
@@ -105,6 +106,7 @@ jobs:
105106
run: |
106107
echo go_code_md5: ${{ steps.vars.outputs.go_code_md5 }}
107108
echo go_path: ${{ steps.vars.outputs.go_path }}
109+
echo go_proxy: ${{ steps.vars.outputs.go_proxy }}
108110
echo binary_cache_hit: ${{ steps.binary-cache.outputs.cache-hit }}
109111
echo chart_version: ${{ steps.vars.outputs.chart_version }}
110112
echo ic_version: ${{ steps.vars.outputs.ic_version }}

0 commit comments

Comments
 (0)