Compare commits

..

No commits in common. "07a0ac42092eb8c1085ebe2a8ca571ed9251fc0b" and "c3d49d90aeadb279ec5ec58cc33729c80b3f12ed" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View file

@ -6,7 +6,6 @@ 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 "goprivate empty" echo "PLUGIN_GOPRIVATE empty"
exit 1 exit 1
fi fi
if [ -z "$PLUGIN_LOGIN" ]; then if [ -z "$PLUGIN_LOGIN" ]; then
echo "login empty" echo "PLUGIN_LOGIN empty"
exit 1 exit 1
fi fi
if [ -z "$PLUGIN_PASSWORD" ]; then if [ -z "$PLUGIN_PASSWORD" ]; then
echo "password empty" echo "PLUGIN_PASSWORD empty"
exit 1 exit 1
fi fi