From 5bbb9522648907345224153fadbf51c0f4b4b695 Mon Sep 17 00:00:00 2001 From: Mo Date: Tue, 14 Jun 2022 16:58:00 -0500 Subject: [PATCH] chore: workflow glob pattern --- .github/workflows/desktop.release.beta.yml | 2 +- .github/workflows/desktop.release.prod.yml | 2 +- .github/workflows/mobile.release.dev.yml | 2 +- .github/workflows/mobile.release.prod.yml | 2 +- .github/workflows/web.release.dev.yml | 2 +- .github/workflows/web.release.prod.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/desktop.release.beta.yml b/.github/workflows/desktop.release.beta.yml index 47490f9c6..d3998db7f 100644 --- a/.github/workflows/desktop.release.beta.yml +++ b/.github/workflows/desktop.release.beta.yml @@ -3,7 +3,7 @@ name: Desktop Beta Release on: push: tags: - - '*standardnotes/desktop+(*alpha*|*beta*)' + - '**standardnotes/desktop+(*alpha*|*beta*)' workflow_dispatch: jobs: diff --git a/.github/workflows/desktop.release.prod.yml b/.github/workflows/desktop.release.prod.yml index 0658da513..1ca723b62 100644 --- a/.github/workflows/desktop.release.prod.yml +++ b/.github/workflows/desktop.release.prod.yml @@ -3,7 +3,7 @@ name: Desktop Prod Release on: push: tags: - - '*standardnotes/desktop!(*alpha*|*beta*)' + - '**standardnotes/desktop!(*alpha*|*beta*)' workflow_dispatch: jobs: diff --git a/.github/workflows/mobile.release.dev.yml b/.github/workflows/mobile.release.dev.yml index d38c55ed3..83074f403 100644 --- a/.github/workflows/mobile.release.dev.yml +++ b/.github/workflows/mobile.release.dev.yml @@ -3,7 +3,7 @@ name: Mobile Build Development on: push: tags: - - '*standardnotes/mobile+(*alpha*|*beta*)' + - '**standardnotes/mobile+(*alpha*|*beta*)' workflow_dispatch: jobs: diff --git a/.github/workflows/mobile.release.prod.yml b/.github/workflows/mobile.release.prod.yml index 5ce33c133..7075d00aa 100644 --- a/.github/workflows/mobile.release.prod.yml +++ b/.github/workflows/mobile.release.prod.yml @@ -3,7 +3,7 @@ name: Mobile Build Production on: push: tags: - - '*standardnotes/mobile!(*alpha*|*beta*)' + - '**standardnotes/mobile!(*alpha*|*beta*)' workflow_dispatch: jobs: diff --git a/.github/workflows/web.release.dev.yml b/.github/workflows/web.release.dev.yml index b34bc73a7..7efd53419 100644 --- a/.github/workflows/web.release.dev.yml +++ b/.github/workflows/web.release.dev.yml @@ -7,7 +7,7 @@ concurrency: on: push: tags: - - '*standardnotes/web-server+(*alpha*|*beta*)' + - '**standardnotes/web-server+(*alpha*|*beta*)' workflow_dispatch: jobs: diff --git a/.github/workflows/web.release.prod.yml b/.github/workflows/web.release.prod.yml index 8b4718ed7..aade3e083 100644 --- a/.github/workflows/web.release.prod.yml +++ b/.github/workflows/web.release.prod.yml @@ -7,7 +7,7 @@ concurrency: on: push: tags: - - '*standardnotes/web-server!(*alpha*|*beta*)' + - '**standardnotes/web-server!(*alpha*|*beta*)' jobs: test: