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 04ac6e3 commit a58b1a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: 'Automatically update chart versions'
run: |
#!/bin/bash
set -o pipefail # Catch errors in pipelines
set -e
# 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,7 +50,7 @@ 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)
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
Expand Down

0 comments on commit a58b1a4

Please sign in to comment.