From c9b7e0598c0fb668ab7a6a0c1ec775fbf189218a Mon Sep 17 00:00:00 2001 From: Santanu Sinha Date: Fri, 5 Apr 2024 16:47:05 +0530 Subject: [PATCH] changed tag pattern --- .github/workflows/pypi-test-release.yml | 2 +- .github/workflows/release.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi-test-release.yml b/.github/workflows/pypi-test-release.yml index 6685e97..8182210 100644 --- a/.github/workflows/pypi-test-release.yml +++ b/.github/workflows/pypi-test-release.yml @@ -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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83129b3..0c69950 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }}