Skip to content

Commit

Permalink
dont run changelog on upload release
Browse files Browse the repository at this point in the history
  • Loading branch information
knaaptime committed May 3, 2023
1 parent b8c4e06 commit 61883b3
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/upload_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,14 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}
- name: Run Changelog
run: |
jupyter nbconvert --to notebook --execute --inplace --ExecutePreprocessor.timeout=-1 --ExecutePreprocessor.kernel_name=python3 tools/gitcount.ipynb
- name: Cat Changelog
uses: pCYSl5EDgo/cat@master
id: changetxt
with:
path: ./tools/changelog.md
env:
TEXT: ${{ steps.changetxt.outputs.text }}
- name: Create Release
id: create_release
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:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.changetxt.outputs.text }}
release_name: Version ${{ github.ref }}
draft: false
prerelease: false
- name: Get Asset name
Expand Down

0 comments on commit 61883b3

Please sign in to comment.