Skip to content

Commit e54ac5d

Browse files
committed
fix: remove hydra workaround
1 parent 013cf4a commit e54ac5d

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

templates/repository/server/.github/workflows/cve-scan.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,7 @@ jobs:
2828
SHA_SHORT=$(git rev-parse --short HEAD)
2929
REPO_NAME=${{ github.event.repository.name }}
3030
31-
# Append -sqlite to SHA_SHORT if repo is hydra
32-
if [ "${REPO_NAME}" = "hydra" ]; then
33-
echo "Repo is hydra, appending -sqlite to SHA_SHORT"
34-
IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}-sqlite"
35-
else
36-
echo "Repo is not hydra, using default IMAGE_NAME"
37-
IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}"
38-
fi
31+
IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}"
3932
4033
# Output values for debugging
4134
echo "Values to be set:"

0 commit comments

Comments
 (0)