Skip to content

Commit 016b041

Browse files
committed
update action
1 parent 53e9280 commit 016b041

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@v2
2222
- name: Build and push
23-
run: python=python3 && tools/build utils && tools/push utils
23+
run: tools/build utils && tools/push utils

tools/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
python $(dirname "$0")/helper.py build "$@"
3+
python3 $(dirname "$0")/helper.py build "$@"

tools/push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ if [[ $(uname -m) == "aarch64" ]]; then
1616
fi
1717

1818
cd "$(dirname "$0")" || exit 1
19-
python helper.py push "$@"
19+
python3 helper.py push "$@"

0 commit comments

Comments
 (0)