summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-11-02 16:50:47 +0100
committerGitHub <[email protected]>2021-11-02 16:50:47 +0100
commita1f97fda88612718e0a6aff06633e66838c5c8a1 (patch)
tree83c457dfde669c8133d08b42d8e439547e3b8eb7 /.github/workflows
parented39f63347894faef43bd1c16a88bba0c1cecd68 (diff)
fix(cd): double stars to match everything (#145)
* fix(cd): double stars to match everything * fix(ci): actually do some ci sometime
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cd.yml6
-rw-r--r--.github/workflows/ci.yml1
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index aded4aa..21aafd9 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -21,9 +21,9 @@ jobs:
with:
filters: |
ts:
- - '*.ts'
- - '*.tsx'
- - '*.json'
+ - '**.ts'
+ - '**.tsx'
+ - '**.json'
build-deploy:
name: '[cd|build-deploy]'
runs-on: 'ubuntu-latest'
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index eb6c347..962e9a6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,6 +6,7 @@ on:
push:
branches:
- '!main'
+ - '**'
defaults:
run:
shell: 'bash'