Skip to content

Commit

Permalink
WiP: Publish GH Release
Browse files Browse the repository at this point in the history
  • Loading branch information
corey committed Nov 14, 2023
1 parent 6078384 commit c9f05d7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,13 @@ jobs:
name: wheels
path: wheels

- name: Check wheels directory
run: ls -al ./wheels

- name: Figure Out Tag
run: |
echo "tag=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Display Tag
run: echo ${{ env.tag }}

- name: Generate Github Release
if: ${{ github.event.inputs.publish_github_release == 'true' }}
Expand All @@ -185,4 +190,4 @@ jobs:
artifactErrorsFailBuild: true
prerelease: ${{ github.event.inputs.prerelease == 'true' }}
commit: ${{ github.sha }}
tag: $(git rev-parse --short HEAD)
tag: ${{ env.tag }}

0 comments on commit c9f05d7

Please sign in to comment.