Skip to content

Commit f488e20

Browse files
authored
comments
1 parent 9ced399 commit f488e20

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ci/backfill-tags.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
22
set -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
1922
trap 'echo -e "\nInterrupted. Exiting..."; exit 130' INT TERM
2023

ci/strip-apk-pinning.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

1111
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
@@ -30,6 +30,8 @@ fi
3030
TAG="${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
3335
git fetch origin tag "${TAG}"
3436
git checkout "${TAG}"
3537

0 commit comments

Comments
 (0)