diff --git a/.github/workflows/desktop.release.beta.yml b/.github/workflows/desktop.release.beta.yml index dff58d8af..fb79f7dc5 100644 --- a/.github/workflows/desktop.release.beta.yml +++ b/.github/workflows/desktop.release.beta.yml @@ -3,8 +3,9 @@ name: Desktop Beta Release on: push: tags: - - '@standardnotes/desktop@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*' - - '@standardnotes/desktop@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*' + - '*standardnotes/*desktop*beta*' + - '*standardnotes/*desktop*alpha*' + - '!*standardnotes/*inner-desktop*' workflow_dispatch: jobs: diff --git a/.github/workflows/desktop.release.prod.yml b/.github/workflows/desktop.release.prod.yml index 4cc68f5a9..20f741458 100644 --- a/.github/workflows/desktop.release.prod.yml +++ b/.github/workflows/desktop.release.prod.yml @@ -3,7 +3,10 @@ name: Desktop Prod Release on: push: tags: - - '@standardnotes/desktop@!(*alpha*|*beta*)' + - '*standardnotes/*desktop*' + - '!*standardnotes/*desktop*beta*' + - '!*standardnotes/*desktop*alpha*' + - '!*standardnotes/*inner-desktop*' workflow_dispatch: jobs: diff --git a/.github/workflows/mobile.release.dev.yml b/.github/workflows/mobile.release.dev.yml index 714208d97..75dd99ee7 100644 --- a/.github/workflows/mobile.release.dev.yml +++ b/.github/workflows/mobile.release.dev.yml @@ -3,8 +3,8 @@ name: Mobile Build Development on: push: tags: - - '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*' - - '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*' + - '*standardnotes/*mobile*beta*' + - '*standardnotes/*mobile*alpha*' workflow_dispatch: jobs: diff --git a/.github/workflows/mobile.release.prod.yml b/.github/workflows/mobile.release.prod.yml index 99c84dca4..45cf5722a 100644 --- a/.github/workflows/mobile.release.prod.yml +++ b/.github/workflows/mobile.release.prod.yml @@ -3,7 +3,9 @@ name: Mobile Build Production on: push: tags: - - '@standardnotes/mobile@!(*alpha*|*beta*)' + - '*standardnotes/mobile*' + - '!*standardnotes/mobile*beta*' + - '!*standardnotes/mobile*alpha*' workflow_dispatch: jobs: diff --git a/.github/workflows/web.release.dev.yml b/.github/workflows/web.release.dev.yml index 43c0102d2..7038b3152 100644 --- a/.github/workflows/web.release.dev.yml +++ b/.github/workflows/web.release.dev.yml @@ -7,8 +7,8 @@ concurrency: on: push: tags: - - '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*' - - '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*' + - '*standardnotes/*web-server*beta*' + - '*standardnotes/*web-server*alpha*' workflow_dispatch: jobs: diff --git a/.github/workflows/web.release.prod.yml b/.github/workflows/web.release.prod.yml index 857d24917..2330a183a 100644 --- a/.github/workflows/web.release.prod.yml +++ b/.github/workflows/web.release.prod.yml @@ -7,8 +7,9 @@ concurrency: on: push: tags: - - '@standardnotes/web-server@!(*alpha*)' - - '@standardnotes/web-server@!(*beta*)' + - '*standardnotes/*web-server*' + - '!*standardnotes/*web-server*beta*' + - '!*standardnotes/*web-server*alpha*' jobs: test: