Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker (GHCR)
on:
push:
tags:
- "v+([0-9]).+([0-9]).+([0-9])"
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/homebrew-tap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Update Homebrew tap
on:
push:
tags:
- "v+([0-9]).+([0-9]).+([0-9])"
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags:
# Same scheme as release-pythinker-cli.yml and windows-installer.yml.
- "v+([0-9]).+([0-9]).+([0-9])"
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name: Promote release
on:
push:
tags:
- "v+([0-9]).+([0-9]).+([0-9])"
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
tag:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pythinker-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release (pythinker-code)
on:
push:
tags:
- "v+([0-9]).+([0-9]).+([0-9])"
- "v[0-9]+.[0-9]+.[0-9]+"
Comment thread
elkaix marked this conversation as resolved.

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scoop-bucket.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Update Scoop bucket
on:
push:
tags:
- "v+([0-9]).+([0-9]).+([0-9])"
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags:
# Match the existing PyPI release workflow's tag scheme: v<MAJOR>.<MINOR>.<PATCH>.
- "v+([0-9]).+([0-9]).+([0-9])"
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
version:
Expand Down
Loading