Skip to content

Commit

Permalink
Merge pull request #2045 from buildpacks/chore/issue-2044
Browse files Browse the repository at this point in the history
Excluding pre-release from `check latest pack release` workflow
  • Loading branch information
jjbustamante authored Feb 2, 2024
2 parents e3f8bc2 + 8e129ed commit 4bce404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-latest-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
LATEST_GO_VERSION=$(go version | cut -d ' ' -f 3)
LATEST_RELEASE_VERSION=$(gh release list -L 1 | cut -d $'\t' -f 1 | cut -d ' ' -f 2)
LATEST_RELEASE_VERSION=$(gh release list --exclude-drafts --exclude-pre-releases -L 1 | cut -d $'\t' -f 1 | cut -d ' ' -f 2)
wget https://github.com/$GITHUB_REPOSITORY/releases/download/$LATEST_RELEASE_VERSION/pack-$LATEST_RELEASE_VERSION-linux.tgz -O out.tgz
tar xzf out.tgz
Expand Down

0 comments on commit 4bce404

Please sign in to comment.