We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a28be5 commit 395be51Copy full SHA for 395be51
.github/workflows/integration-test.yml
@@ -52,7 +52,10 @@ jobs:
52
53
- name: Download zombienet
54
run: |
55
- wget "https://github.com/paritytech/zombienet/releases/download/v1.3.133/zombienet-linux-x64" || exit 1
+ curl -L \
56
+ -H "Authorization: token ${{ github.token }}" \
57
+ -o zombienet-linux-x64 \
58
+ "https://github.com/paritytech/zombienet/releases/download/v1.3.138/zombienet-linux-x64"
59
chmod +x zombienet-linux-x64
60
echo "ZOMBIENET_BINARY=$GITHUB_WORKSPACE/zombienet-linux-x64" >> $GITHUB_ENV
61
0 commit comments