Skip to content

Commit

Permalink
chore: pin pack binary version at 0.13.1 in CI builds (#28)
Browse files Browse the repository at this point in the history
We have been bitten before by breaking changes in the pack CLI.
This commit fixes the version at 0.13.1 in CI.

Fixes: #26
  • Loading branch information
lance authored Sep 15, 2020
1 parent 090ceb4 commit 955ada8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
with:
result-encoding: string
script: |
return github.repos.getLatestRelease({
return github.repos.getReleaseByTag({
owner: "buildpacks",
repo: "pack"
repo: "pack",
tag: "v0.13.1"
}).then(result => {
return result.data.assets
.filter(a => a.name.includes("linux"))
Expand Down

0 comments on commit 955ada8

Please sign in to comment.