Skip to content

Commit

Permalink
fix: drop extra .tgz from release artifact (#464)
Browse files Browse the repository at this point in the history
* fix: drop extra .tgz from release artifact
* fix: remove unnecessary change to github workflow
  • Loading branch information
jessesimpson36 authored Aug 7, 2024
1 parent 203492b commit caaae61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
id: build_bin
run: |
make bin
TARBALL_NAME="chart-verifier.tgz-${{ steps.get_tag.outputs.release_version }}.tgz"
TARBALL_NAME="chart-verifier-${{ steps.get_tag.outputs.release_version }}.tgz"
tar -zcvf $TARBALL_NAME -C out/ chart-verifier
export TARBALL_PATH=$(realpath $TARBALL_NAME)
echo "tarball_path=$TARBALL_PATH" | tee -a $GITHUB_OUTPUT
Expand Down

0 comments on commit caaae61

Please sign in to comment.