dockerhub #170
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: dockerhub | |
on: | |
schedule: | |
- cron: '7 13 * * 4' # weekly on thursday morning | |
workflow_dispatch: | |
jobs: | |
pull-released-dockerimages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Avoid stale tags by pulling | |
run: | | |
ALL_IMAGES="$(curl -s https://hub.docker.com/v2/repositories/cmur2/my-drone/tags?page_size=1000 | jq -r '.results[].name | "cmur2/my-drone:" + .' | grep -e 'cmur2/my-drone:v')" | |
for image in $ALL_IMAGES; do | |
echo "Pulling $image to avoid staleness..." | |
docker pull "$image" | |
done |