Skip to content

Commit

Permalink
Replace tags from diepvries/X.X.X to vX.X.X
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-the1 committed Mar 23, 2024
1 parent 8c2113f commit 0a1e57b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: create-release
on:
push:
tags:
- diepvries/*
- 'v*'

permissions:
contents: write
Expand All @@ -23,6 +23,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
release_name: diepvries ${{ github.ref }}
draft: false
prerelease: false
2 changes: 1 addition & 1 deletion .github/workflows/pages-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: pages-build-and-deploy
on:
push:
tags:
- diepvries/*
- 'v*'

jobs:
deploy-github-pages:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: pypi-build-and-deploy
on:
push:
tags:
- diepvries/*
- 'v*'

jobs:
deploy-to-pypi:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]~=6.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
tag_regex = "^diepvries/(?P<version>[0-9\\.]+)$" # backslash needs to be escaped in TOML
tag_regex = "^v(?P<version>[0-9\\.]+)$" # backslash needs to be escaped in TOML
local_scheme = "no-local-version"

0 comments on commit 0a1e57b

Please sign in to comment.