Skip to content

Commit

Permalink
changed tag pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
santanusinha committed Apr 5, 2024
1 parent 7c942bb commit c9b7e05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
# Pattern matched against refs/tags
tags:
- 'releases/*' # Push events to every tag not containing /
- '*' # Push events to every tag not containing /

jobs:
deploy:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release container on tagging
on:
push:
# Pattern matched against refs/tags
tags:
- 'releases/*' # Push events to every tag not containing /
push:
# Pattern matched against refs/tags
tags:
- '*' # Push events to every tag not containing /
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
Expand Down

0 comments on commit c9b7e05

Please sign in to comment.