We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd58b5b commit de75458Copy full SHA for de75458
.github/workflows/cve-scan.yaml
@@ -31,14 +31,7 @@ jobs:
31
SHA_SHORT=$(git rev-parse --short HEAD)
32
REPO_NAME=${{ github.event.repository.name }}
33
34
- # Append -sqlite to SHA_SHORT if repo is hydra
35
- if [ "${REPO_NAME}" = "hydra" ]; then
36
- echo "Repo is hydra, appending -sqlite to SHA_SHORT"
37
- IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}-sqlite"
38
- else
39
- echo "Repo is not hydra, using default IMAGE_NAME"
40
- IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}"
41
- fi
+ IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}"
42
43
# Output values for debugging
44
echo "Values to be set:"
0 commit comments