From 19f13b7c0c388f15af45cf3fa04424a2946b4a04 Mon Sep 17 00:00:00 2001 From: Corey Oordt Date: Sat, 15 Apr 2023 09:07:00 -0500 Subject: [PATCH] Fixed automation tooling - changed name to bump-my-version in setup.cfg - added PAT in release pipeline to (hopefully) allow committing and tagging to master without issue. --- .github/workflows/release.yaml | 2 ++ setup.cfg | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5c3dff8a..2f29febc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,6 +13,8 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 + token: ${{ secrets.PAT }} + - name: Package uses: hynek/build-and-inspect-python-package@v1 diff --git a/setup.cfg b/setup.cfg index aab6c86d..b6722040 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -name = bumpversion +name = bump-my-version version = attr:bumpversion.__version__ description = Version bump your Python project url = https://github.com/callowayproject/bump-my-version