Skip to content

Commit e08f1c9

Browse files
committed
nit fix
1 parent 2e862a5 commit e08f1c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/weekly-go-version-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
- name: Get latest go patch version
3535
id: patch-version
3636
run: |
37-
export "GO_PATCH_VERSION=$(curl --silent https://go.dev/VERSION?m=text)" >> $GITHUB_ENV
37+
echo "GO_PATCH_VERSION=$(curl --silent https://go.dev/VERSION?m=text)" >> $GITHUB_ENV
3838
sed -i 's/GO_VERSION=[0-9\.]*/GO_VERSION=${{ env.GO_PATCH_VERSION }}/' Makefile
3939
sed -i 's/golang:[0-9\.]*/golang:${{ env.GO_PATCH_VERSION }}/' Tiltfile
40-
echo $env.GO_PATCH_VERSION
40+
echo "${{ env.GO_PATCH_VERSION }}"
4141
- name: Create Pull Request
4242
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # tag=v7.0.5
4343
with:

0 commit comments

Comments
 (0)