Skip to content

Commit 5c2b1af

Browse files
authored
fix: use asdf version 0.16.x (#196)
Force to use asdf version 0.16.x to fix CI. Signed-off-by: D4ryl00 <[email protected]>
1 parent 2a8de83 commit 5c2b1af

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,21 @@ jobs:
2626
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
2727

2828
- name: Setup asdf
29-
uses: asdf-vm/actions/setup@v3
29+
uses: ynab/[email protected]
30+
with:
31+
version: 0.16.7
3032

3133
- name: Setup Go version
3234
run: |
3335
asdf plugin add golang
3436
asdf install golang
35-
echo "go_version=$(asdf current golang | xargs | cut -d ' ' -f 2)" >> $GITHUB_ENV
37+
echo "go_version=$(asdf current golang | xargs | cut -d ' ' -f 6)" >> $GITHUB_ENV
3638
3739
- name: Setup Node version
3840
run: |
3941
asdf plugin add nodejs
4042
asdf install nodejs
41-
echo "node_version=$(asdf current nodejs | xargs | cut -d ' ' -f 2)" >> $GITHUB_ENV
43+
echo "node_version=$(asdf current nodejs | xargs | cut -d ' ' -f 6)" >> $GITHUB_ENV
4244
4345
- name: Set nodejs as global exec
4446
run: |

0 commit comments

Comments
 (0)