From b8232f596f64a03279c4f62c0c5ae51adc5a9a32 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 3 Apr 2022 11:55:17 -0400 Subject: [PATCH] Drop GITHUB_TOKEN from release process (#1115) Now using default token automatically per PR83 from https://github.com/softprops/action-gh-release/pull/83 --- .github/workflows/publish_package.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/publish_package.yml b/.github/workflows/publish_package.yml index 557f98fa9..ca7360bc2 100644 --- a/.github/workflows/publish_package.yml +++ b/.github/workflows/publish_package.yml @@ -42,8 +42,6 @@ jobs: files: 'dist/*' fail_on_unmatched_files: true tag_name: ${{ github.event.inputs.version }} # in the workflow_dispatch case, make a new tag from the given input; in the published release case, this will be empty and will fall back to updating that release. - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1