From 8d459f8edc7d5a62515031b1b663578498d95f75 Mon Sep 17 00:00:00 2001 From: Yusuke Nemoto Date: Wed, 18 Sep 2024 22:38:59 +0900 Subject: [PATCH] build: fix tag specification (#64) --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2240218..224639e 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -8,7 +8,7 @@ on: - completed push: tags: - - "v*" + - "v[0-9]+.[0-9]+.[0-9]+" jobs: deploy: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2e6e00..8b88894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: push: branches: [ "master" ] tags: - - "v*" + - "v[0-9]+.[0-9]+.[0-9]+" pull_request: branches: [ "master" ]