浏览代码

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 月之前
父节点
当前提交
7733e3ab57
共有 1 个文件被更改,包括 3 次插入3 次删除
  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 }}