Skip to content

Commit 879af37

Browse files
authored
Merge pull request #28 from Freifunk-Rhein-Neckar/ci-fix-deploy-check
ci: fix deployment in fork check
2 parents a23ab45 + e0e1b6b commit 879af37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/build-meta.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ if [ "${GITHUB_REPOSITORY,,}" != "${UPSTREAM_REPO_NAME,,}" ] && [ "$SIGN_MANIFES
169169
fi
170170

171171
# We should neither deploy in a fork, as the workflow is hard-coding our firmware-server
172-
if [ "$GITHUB_REPOSITORY" != "$UPSTREAM_REPO_NAME" ] && [ "$DEPLOY" != "0" ]; then
172+
if [ "${GITHUB_REPOSITORY,,}" != "${UPSTREAM_REPO_NAME,,}" ] && [ "$DEPLOY" != "0" ]; then
173173
DEPLOY="0"
174174

175175
echo "::warning::Skip deployment due to action running in fork."

0 commit comments

Comments
 (0)