Skip to content

Commit

Permalink
Merge pull request #8 from orange-cloudfoundry/renovate/carvel-dev-ve…
Browse files Browse the repository at this point in the history
…ndir-0.x

chore(deps): update dependency carvel-dev/vendir to v0.39.0
  • Loading branch information
o-orand authored Jan 23, 2024
2 parents 5193049 + 5c59b72 commit 114f237
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN curl -sL https://github.com/cloudfoundry/bosh-cli/releases/download/v${BOSH_
install /dev/stdin /usr/local/bin/bosh && bosh --version

# renovate: datasource=github-releases depName=carvel-dev/vendir
ENV VENDIR_VERSION=0.38.0
ENV VENDIR_VERSION=0.39.0
RUN curl -sL https://github.com/carvel-dev/vendir/releases/download/v${VENDIR_VERSION}/vendir-linux-amd64 | \
install /dev/stdin /usr/local/bin/vendir && vendir -v

Expand Down
7 changes: 5 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ set -e

# extract info
if [[ "$GITHUB_REF" == refs/tags/* ]]; then
echo "tag detected: $GITHUB_REF"
version=${GITHUB_REF#refs/tags/}
version=${version#v}
tag_version=v${version}
release=true
elif [[ "$GITHUB_REF" == refs/heads/* ]]; then
version=${GITHUB_REF#refs/heads/}
echo "Head ref detected: $GITHUB_REF"
version=$(echo ${GITHUB_REF#refs/heads/}|tr '/' '_') # Replace / with _ to support PR like renovate/xxxxx
release=false
elif [[ "$GITHUB_REF" == refs/pull/* ]]; then
echo "PR detected: $GITHUB_REF"
pull_number=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
version=pr-${pull_number}
release=false
Expand Down Expand Up @@ -102,7 +105,7 @@ else
echo "::warning::AWS_BOSH_ACCES_KEY_ID not set, skipping config/private.yml"
fi

echo "creating bosh release: ${name}-${version}.tgz"
echo "creating bosh release (name: ${name} - version: ${version}): ${name}-${version}.tgz"
if [ "${release}" == "true" ]; then
bosh create-release --final --version="${version}" --tarball="${name}-${version}".tgz --force # --force is required to ignore dev_releases/ dir, created during final release
else
Expand Down

0 comments on commit 114f237

Please sign in to comment.