Skip to content

Commit

Permalink
Merge pull request #9 from aplura/next
Browse files Browse the repository at this point in the history
Fri Jun  7 12:09:34 EDT 2024 GitHubAction for Release
  • Loading branch information
alacercogitatus authored Jun 7, 2024
2 parents 618ff04 + 1e6108a commit b887b2e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,16 @@ jobs:
run: python -m build --sdist
- name: Build Package Wheel
run: python -m build --wheel
- name: Create release
- name: Create Release
id: create_release
uses: actions/create-release@latest
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
artifacts: "dist/*"
tag_name: ${{ steps.version.outputs.output }}
release_name: Release ${{ steps.version.outputs.output }}
body: ${{ steps.releaseNotes.outputs.output }}
body: |
${{ steps.releaseNotes.outputs.output }}
draft: false
prerelease: false

0 comments on commit b887b2e

Please sign in to comment.