We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca33781 commit f01ca60Copy full SHA for f01ca60
2 files changed
.github/workflows/ci_release.yml
@@ -56,6 +56,15 @@ jobs:
56
exit 1
57
fi
58
59
+ - name: Verify ghcr-manager image refs use current release
60
+ run: |
61
+ set -euo pipefail
62
+ if grep -RInP "ghcr\.io/ghcr-manager/[^:\s]+:v(?!${GITHUB_REF_NAME#v}\b)\S*" .
63
+ then
64
+ echo "Found ghcr-manager image refs not pinned to ${GITHUB_REF_NAME}" >&2
65
+ exit 1
66
+ fi
67
+
68
- name: Verify package.json uses current tag version
69
run: |
70
set -euo pipefail
visualizer/README.md
@@ -79,7 +79,7 @@ Example:
79
```sh
80
docker run --rm -p 8080:8080 \
81
-v "$PWD:/data:ro" \
82
- ghcr.io/ghcr-manager/ghcr-cleanup-manager-visualizer:v1.1.3 \
+ ghcr.io/ghcr-manager/ghcr-cleanup-manager-visualizer:v1.1.4 \
83
--db /data/acme__demo.sqlite
84
```
85
0 commit comments