Skip to content

Commit

Permalink
use official release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexqfredrickson committed May 6, 2024
1 parent 7e3719e commit 22bd376
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/version-release-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,17 @@ jobs:
uses: actions/checkout@v4
with:
ref: "HEAD"
- name: Create GitHub release
uses: elgohr/Github-Release-Action@v5
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: ${{ steps.update-version.outputs.VERSION }}"
tag_name: ${{ github.event.inputs.new-version }}
release_name: v${{ github.event.inputs.new-version }}
draft: false
prerelease: false

publish-to-pypi:
name: Publish to PyPI
Expand Down

0 comments on commit 22bd376

Please sign in to comment.