Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
drinkataco committed Feb 3, 2024
1 parent a58b1a4 commit c2ecafb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
run: |
#!/bin/bash
set -e
set -o pipefail # Catch errors in pipelines
# FIXME: Some issues with this job step that should be fixed and considered:
# 1. We assume the tag will be semvar. There is no checking or protections if not.
Expand All @@ -50,10 +51,8 @@ jobs:
# again as part of this script. We should check the diffs and skip if so
git fetch --tags
# current_tag="${GITHUB_REF#refs/tags/}"
previous_tag=$(git tag --sort=-creatordate | grep -A1 $CURRENT_TAG | tail -n1)
echo "_a"
previous_tag=v0.0.1-dev
current_tag=v0.0.2-dev
previous_tag=$(git tag --sort=-creatordate | grep -A1 $CURRENT_TAG | tail -n1)
GIT_COMMIT=1 ./update_versions.sh "$previous_tag" "$current_tag"
# - name: 'Package Charts'
Expand Down

0 comments on commit c2ecafb

Please sign in to comment.