Skip to content

Commit c83e53d

Browse files
committed
ci(bump): separate versions check from regular build
1 parent f941d4a commit c83e53d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/apk-check-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
docker run --pull always -t --user root "leplusorg/${GITHUB_REPOSITORY#*/}:main" sh -c '
1818
apk update
1919
if apk -u list | tee -a /dev/stderr | grep -q -e . ; then
20-
exit 1 ;
20+
exit 1
2121
fi
2222
'

.github/workflows/luarocks-check-versions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
shell: bash
1616
run: |
1717
docker run --pull always -t --user root "leplusorg/${GITHUB_REPOSITORY#*/}:main" sh -c '
18-
if luarocks list --outdated | tee -a /dev/stderr | grep -q -e '"'"'^lua-resty-openidc$'"'"' ; then \
19-
exit 1 ;
18+
if luarocks list --outdated | tee -a /dev/stderr | grep -q -e '"'"'^lua-resty-openidc$'"'"' ; then
19+
exit 1
2020
fi
2121
'

0 commit comments

Comments
 (0)