From 61883b348db59fd9ea451b819b39febe88d4cd8a Mon Sep 17 00:00:00 2001 From: eli knaap Date: Wed, 3 May 2023 14:49:57 -0700 Subject: [PATCH] dont run changelog on upload release --- .github/workflows/upload_package.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/upload_package.yml b/.github/workflows/upload_package.yml index a8352d9c..f29616e8 100644 --- a/.github/workflows/upload_package.yml +++ b/.github/workflows/upload_package.yml @@ -26,16 +26,6 @@ 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 @@ -43,8 +33,7 @@ jobs: 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