We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e9280 commit 016b041Copy full SHA for 016b041
.github/workflows/ci.yml
@@ -20,4 +20,4 @@ jobs:
20
- name: Checkout
21
uses: actions/checkout@v2
22
- name: Build and push
23
- run: python=python3 && tools/build utils && tools/push utils
+ run: tools/build utils && tools/push utils
tools/build
@@ -1,3 +1,3 @@
1
#!/bin/bash
2
3
-python $(dirname "$0")/helper.py build "$@"
+python3 $(dirname "$0")/helper.py build "$@"
tools/push
@@ -16,4 +16,4 @@ if [[ $(uname -m) == "aarch64" ]]; then
16
fi
17
18
cd "$(dirname "$0")" || exit 1
19
-python helper.py push "$@"
+python3 helper.py push "$@"
0 commit comments