+3
-8
.tangled/workflows/docker-atcr.yml
+3
-8
.tangled/workflows/docker-atcr.yml
···
14
14
command: |
15
15
VCS_REF=$(git rev-parse HEAD)
16
16
BUILD_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)
17
-
18
-
git remote -v || true
19
-
20
-
# If shallow, unshallow. If not shallow, this is harmless.
21
-
git fetch --prune --unshallow 2>/dev/null || true
22
-
23
-
# Fetch full tag refs explicitly
24
-
git fetch --prune --tags --force origin 'refs/tags/*:refs/tags/*'
17
+
DEBUG1=$(git remote -v || true)
18
+
DEBUG2=$(git fetch --prune --unshallow 2>/dev/null || true)
19
+
DEBUG3=$(git fetch --prune --tags --force origin 'refs/tags/*:refs/tags/*')
25
20
26
21
exit 1