Skip to content

Commit 5a428ee

Browse files
authored
Update tt installation method in workflow
Replaced direct installation of tt with wget to download the package first.
1 parent e307c64 commit 5a428ee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test_on_push.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
- uses: tarantool/setup-tarantool@v4
2020
with:
2121
tarantool-version: ${{ matrix.tarantool }}
22-
- run: sudo apt install https://github.com/tarantool/tt/releases/download/v2.11.0/tt_2.11.0_amd64.deb
22+
- run: |
23+
wget -O /tmp/tt.deb https://github.com/tarantool/tt/releases/download/v2.11.0/tt_2.11.0_amd64.deb
24+
sudo apt install /tmp/tt.deb
2325
2426
- name: Build module
2527
run: |

0 commit comments

Comments
 (0)