Skip to content

Commit

Permalink
Fix image name in workflow (#121)
Browse files Browse the repository at this point in the history
* Remove dead comment

* Fix latest image name in ci workflow
  • Loading branch information
JonJagger committed Mar 1, 2024
1 parent 12d70b6 commit 2716428
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main_staging.yml
Expand Up @@ -379,5 +379,5 @@ jobs:
- name: Tag image to :latest and push to Dockerhub Registry
run: |
docker pull "${IMAGE_NAME}"
docker tag "${IMAGE_NAME}" "cyberdojo/${{ env.KOSLI_FLOW }}:latest"
docker push "cyberdojo/${{ env.KOSLI_FLOW }}:latest"
docker tag "${IMAGE_NAME}" "cyberdojo/differ:latest"
docker push "cyberdojo/differ:latest"
2 changes: 0 additions & 2 deletions sh/wait_for_image.sh
@@ -1,8 +1,6 @@
#!/usr/bin/env bash
set -Eu

# See https://gitlab.com/cyber-dojo/creator/-/blob/main/.gitlab/workflows/dev-readme.md

readonly IMAGE_NAME="${1}" # eg cyberdojo/differ:756c728
readonly MAX_WAIT_TIME=5 # max time to wait for IMAGE_NAME to be pushed, in minutes
readonly SLEEP_TIME=10 # wait time between pull checks, in seconds
Expand Down

0 comments on commit 2716428

Please sign in to comment.