From 2eed55c85d8d4b59b52a588f89da15aa349097e0 Mon Sep 17 00:00:00 2001 From: tazlin Date: Mon, 23 Oct 2023 19:25:05 -0400 Subject: [PATCH] ci: remove auto-changelog --- .github/workflows/release.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0440a6..ee2d8b7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,12 +20,13 @@ jobs: contents: write pull-requests: read + steps: - name: "📣 Release on push" id: release uses: rymndhng/release-on-push-action@v0.28.0 env: - GITHUB_TOKEN: ${{ secrets.PYPI_PAT }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: bump_version_scheme: patch use_github_release_notes: true @@ -53,23 +54,6 @@ jobs: python -m pip install --upgrade pip python -m pip install build - - name: "✏️ Install changelog dependencies" - if: ${{ steps.release.outputs.version != '' }} - uses: actions/setup-node@v3 - - - name: "✏️ Generate release changelog" - if: ${{ steps.release.outputs.version != '' }} - run: | - npm -g install auto-changelog - auto-changelog --template=.changelog --ignore-commit-pattern="update changelog|version bump|Merge pull" - - # Try to add the changelog back to the releases branch - - uses: EndBug/add-and-commit@v9 - with: - add: 'CHANGELOG.md' - message: 'ci: update changelog' - committer_name: GitHub Actions - committer_email: actions@github.com # Build a pypi distribution using the env var version number - name: "🔧 Build a binary wheel and a source tarball"