Compare commits

...

2 commits

Author SHA1 Message Date
07a0ac4209 fix(logs): align error message with var names
All checks were successful
ci/woodpecker/push/build/3 Pipeline was successful
ci/woodpecker/push/build/1 Pipeline was successful
ci/woodpecker/push/build/2 Pipeline was successful
2025-08-23 16:09:16 +02:00
c15077cc31 chore(build): build only main branch 2025-08-23 16:08:54 +02:00
2 changed files with 4 additions and 3 deletions

View file

@ -6,6 +6,7 @@ matrix:
when: when:
- event: [push, manual] - event: [push, manual]
branch: main
steps: steps:
- name: Build & publish container - name: Build & publish container

View file

@ -1,17 +1,17 @@
#!/usr/bin/env sh #!/usr/bin/env sh
if [ -z "$PLUGIN_GOPRIVATE" ]; then if [ -z "$PLUGIN_GOPRIVATE" ]; then
echo "PLUGIN_GOPRIVATE empty" echo "goprivate empty"
exit 1 exit 1
fi fi
if [ -z "$PLUGIN_LOGIN" ]; then if [ -z "$PLUGIN_LOGIN" ]; then
echo "PLUGIN_LOGIN empty" echo "login empty"
exit 1 exit 1
fi fi
if [ -z "$PLUGIN_PASSWORD" ]; then if [ -z "$PLUGIN_PASSWORD" ]; then
echo "PLUGIN_PASSWORD empty" echo "password empty"
exit 1 exit 1
fi fi