Skip to content

Commit

Permalink
Remove the bump_version.sh script
Browse files Browse the repository at this point in the history
This functionality has been replaced by the `bump-version` script.
  • Loading branch information
mcdonnnj committed Oct 1, 2024
1 parent b780601 commit e3bc34a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 84 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:
# repometa:
# The json metadata describing this repository.
# source_version:
# The source version as reported by the `bump_version.sh show` command.
# The source version as reported by the `bump-version show` command.
# tags:
# A comma separated list of Docker tags to be applied to the images on
# Docker Hub. The tags will vary depending on:
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
TAGS="${TAGS},ghcr.io/${i}"
done
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
echo "source_version=$(./bump_version.sh show)" >> $GITHUB_OUTPUT
echo "source_version=$(./bump-version show)" >> $GITHUB_OUTPUT
echo "tags=${TAGS}" >> $GITHUB_OUTPUT
echo tags=${TAGS}
- name: Setup tmate debug session
Expand Down
81 changes: 0 additions & 81 deletions bump_version.sh

This file was deleted.

2 changes: 1 addition & 1 deletion tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ set -o nounset
set -o errexit
set -o pipefail

version=$(./bump_version.sh show)
version=$(./bump-version show)

git tag "v$version" && git push --tags

0 comments on commit e3bc34a

Please sign in to comment.