From bf12a757f4997e7ab0b39d23c4e77eed43f731b3 Mon Sep 17 00:00:00 2001 From: Nathaniel van Diepen Date: Sat, 21 May 2022 20:32:47 -0600 Subject: [PATCH] Ignore master since publish will run --- .github/workflows/web.yaml | 5 +++++ 1 file changed, 5 insertions(+) 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/**'