Skip to content

Commit d3841d9

Browse files
committed
1 parent a85909e commit d3841d9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/dockerhub-deploy.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Deploy to DockerHub
22

33
on:
4+
push:
45
workflow_dispatch:
56
inputs:
67
docker_username:
@@ -36,13 +37,13 @@ jobs:
3637
run: |
3738
docker buildx build --load \
3839
--platform ${{ matrix.platform }} \
39-
-t cfpq/py_algo:${{ github.event.inputs.image_tag }}-${{ matrix.platform }} \
40+
-t cfpq/py_algo:tmp \
4041
.
4142
4243
- name: Run tests
4344
run: |
4445
docker run --rm \
45-
cfpq/py_algo:${{ github.event.inputs.image_tag }}-${{ matrix.platform }} bash -c "
46+
cfpq/py_algo:tmp -c "
4647
echo 'System Info:';
4748
uname -a;
4849
pytest test -v -m 'CI'"

0 commit comments

Comments
 (0)