Skip to content

Commit

Permalink
Merge pull request #82 from tailscale/awly/build-old-releases-fix
Browse files Browse the repository at this point in the history
.github/workflows/build: fix release name on manual builds
  • Loading branch information
awly committed Jan 5, 2024
2 parents d378d4c + 64761a3 commit 88b342f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Release name can't be the same as tag name, sigh
tag_name: build-${{ github.sha }}
release_name: ${{ github.sha }}
tag_name: build-${{ inputs.ref || github.sha }}
release_name: ${{ inputs.ref || github.sha }}
draft: false
prerelease: true

Expand Down

0 comments on commit 88b342f

Please sign in to comment.