Skip to content

Commit

Permalink
Fix typo in Download Go SDK path (#1268)
Browse files Browse the repository at this point in the history
It appears that in PR verification we use `${{ github.workspace }}/sdk/`
syntax but in release.yml we used `${{ github.workspace }}/sdk/` syntax
which broke the alpha release. Trying the consistent syntax here.
  • Loading branch information
t0yv0 authored Jul 20, 2024
1 parent ed7dcf4 commit 12c643b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: go-sdk.tar.gz
path: $${{ github.workspace }}/sdk/
path: ${{ github.workspace }}/sdk/
- name: Uncompress Go SDK
run: tar -zxf ${{ github.workspace }}/sdk/go.tar.gz -C
${{ github.workspace }}/sdk/go
Expand Down

0 comments on commit 12c643b

Please sign in to comment.