Browse Source

ci: fix path filtering in installer workflow

See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-and-excluding-paths
Marc Cornellà 6 months ago
parent
commit
7733e3ab57
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .github/workflows/installer.yml

+ 3 - 3
.github/workflows/installer.yml

@@ -3,9 +3,9 @@ on:
   workflow_dispatch: {}
   push:
     paths:
-      - tools/install.sh
-      - .github/workflows/installer
-      - .github/workflows/installer.yml
+      - 'tools/install.sh'
+      - '.github/workflows/installer/**'
+      - '.github/workflows/installer.yml'
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}