2018-09-04 14:19:01 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2018-09-04 16:17:35 +02:00
|
|
|
if [ -n "$DOCKER_USERNAME" ] && [ -n "$DOCKER_PASSWORD" ]; then
|
2020-09-06 15:16:53 +02:00
|
|
|
echo "Login to the docker..."
|
|
|
|
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin "$DOCKER_REGISTRY"
|
2018-09-04 14:19:01 +02:00
|
|
|
fi
|
|
|
|
|
2019-03-14 14:13:12 +02:00
|
|
|
# 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 15:16:53 +02:00
|
|
|
export GITHUB_TOKEN=$GORELEASER_GITHUB_TOKEN
|
2019-03-14 14:13:12 +02:00
|
|
|
fi
|
|
|
|
|
2020-08-06 20:08:05 +02:00
|
|
|
if [ -n "$GITHUB_TOKEN" ]; then
|
2020-09-06 15:16:53 +02: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
|
2020-08-06 20:08:05 +02:00
|
|
|
fi
|
|
|
|
|
2020-09-06 15:16:53 +02:00
|
|
|
# shellcheck disable=SC2068
|
2018-09-04 14:19:01 +02:00
|
|
|
goreleaser $@
|