Skip to content

Commit

Permalink
Remove "v" prfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jasongwartz committed Mar 10, 2024
1 parent 66d1046 commit a5e2901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function run(): Promise<void> {
const release = await octokit.rest.repos.getReleaseByTag({
owner: 'apple',
repo: 'pkl',
tag: `v${pklVersion}`
tag: `${pklVersion}`
})
const assetId = release.data.assets.find(
a => a.name === 'pkl-linux-amd64'
Expand Down

0 comments on commit a5e2901

Please sign in to comment.