File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -euo pipefail
3+
34# Scan all tags on the repo
45# foreach tag, see if all our base docker images exist for that tag
56# If a tag is missing, kick off a github action workflow to rebuild those tags
@@ -15,6 +16,8 @@ set -euo pipefail
1516# ./ci/backfill-tags.sh --yolo # Execute workflow runs for all tags (one workflow at a time)
1617# ./ci/backfill-tags.sh --tag 3.0.0 # Dry-run specific tag
1718# ./ci/backfill-tags.sh --yolo --tag 4.1.3 # Execute workflow for specific tag
19+
20+
1821# Handle Ctrl+C
1922trap ' echo -e "\nInterrupted. Exiting..."; exit 130' INT TERM
2023
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set -euo pipefail
55# This allows rebuilding old tags with the latest
66# OS packages available in the base image's package manager.
77#
8- # Usage: ./ci/build-with-os-versions .sh <tag>
8+ # Usage: ./ci/strip-apk-pinning .sh <tag>
99# tag - The git tag to build from (must exist)
1010
1111SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
3030TAG=" ${1} "
3131
3232# Verify the git tag exists before proceeding
33+ # and also check it out
34+ # so when running in GitHub Actions we build the respective tag
3335git fetch origin tag " ${TAG} "
3436git checkout " ${TAG} "
3537
You can’t perform that action at this time.
0 commit comments