diff --git a/.github/workflows/web.yaml b/.github/workflows/web.yaml index b3063b408..5b48702fb 100644 --- a/.github/workflows/web.yaml +++ b/.github/workflows/web.yaml @@ -2,6 +2,11 @@ name: Build website on: push: + branches: + - '*' # matches every branch that doesn't contain a '/' + - '*/*' # matches every branch containing a single '/' + - '**' # matches every branch + - '!master' # excludes master paths: - 'web/**' - 'shared/liboxide/**'