Files
goreleaser/scripts/entrypoint.sh
T

33 lines
1.1 KiB
Bash
Raw Normal View History

2018-09-04 15:19:01 +03:00
#!/usr/bin/env bash
2018-09-04 17:17:35 +03:00
if [ -n "$DOCKER_USERNAME" ] && [ -n "$DOCKER_PASSWORD" ]; then
2020-09-06 10:16:53 -03:00
echo "Login to the docker..."
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin "$DOCKER_REGISTRY"
2018-09-04 15:19:01 +03:00
fi
# Workaround for github actions when access to different repositories is needed.
# Github actions provides a GITHUB_TOKEN secret that can only access the current
# repository and you cannot configure it's value.
# Access to different repositories is needed by brew for example.
if [ -n "$GORELEASER_GITHUB_TOKEN" ] ; then
2020-09-06 10:16:53 -03:00
export GITHUB_TOKEN=$GORELEASER_GITHUB_TOKEN
fi
if [ -n "$GITHUB_TOKEN" ]; then
2020-09-06 10:16:53 -03:00
# Log into GitHub package registry
echo "$GITHUB_TOKEN" | docker login docker.pkg.github.com -u docker --password-stdin
echo "$GITHUB_TOKEN" | docker login ghcr.io -u docker --password-stdin
fi
2022-08-07 22:39:03 -03:00
if [ -n "$CI_REGISTRY_PASSWORD" ]; then
# Log into GitLab registry
echo "$CI_REGISTRY_PASSWORD" | docker login "$CI_REGISTRY" -u "$CI_REGISTRY_USER" --password-stdin
fi
# prevents git from complaining about unsafe dir, specially when using github actions
2022-08-12 09:42:23 -03:00
git config --global --add safe.directory $PWD
2020-09-06 10:16:53 -03:00
# shellcheck disable=SC2068
exec goreleaser $@