Skip to content

Commit

Permalink
fix: binary names in release build
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Sep 6, 2023
1 parent bb6e69a commit 298124a
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 @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
with:
# grab the commit passed in via `tag`, if any
ref: ${{ github.event.inputs.tag }}
ref: ${{ github.event.release.tag_name || github.event.inputs.tag }}
# need to fetch unshallow so that setuptools_scm can infer the version
fetch-depth: 0

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/checkout@v3
with:
# grab the commit passed in via `tag`, if any
ref: ${{ github.event.inputs.tag }}
ref: ${{ github.event.release.tag_name || github.event.inputs.tag }}
# need to fetch unshallow so that setuptools_scm can infer the version
fetch-depth: 0

Expand Down

0 comments on commit 298124a

Please sign in to comment.