diff --git a/.github/workflows/container-image.yml b/.github/workflows/container-image.yml index 4a71668..3b6a5b8 100644 --- a/.github/workflows/container-image.yml +++ b/.github/workflows/container-image.yml @@ -13,7 +13,6 @@ jobs: - '3.10' # EOL xx Oct 2026 - '3.9' # EOL xx Oct 2025 - '3.8' # EOL xx Oct 2024 - - '3.7' # EOL 27 Jun 2023 name: Python ${{ matrix.python-version }} Testing steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/tag-version.yml b/.github/workflows/tag-version.yml new file mode 100644 index 0000000..1b9f98c --- /dev/null +++ b/.github/workflows/tag-version.yml @@ -0,0 +1,26 @@ +name: Bump version +on: + # Both items below have to be true; PR has to be against master, and closed + pull_request: + types: + - closed + branches: + - master +jobs: + build: + if: github.event.pull_request.merged == true + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.merge_commit_sha }} + fetch-depth: '0' + - name: Bump version and push tag + uses: anothrNick/github-tag-action@1.67.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WITH_V: false + DEFAULT_BUMP: patch + DRY_RUN: false