diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2a16e24..613a284 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,6 +2,16 @@ name: Deploy on: push: branches: [master] + paths-ignore: + - 'android/**' + - 'ios/**' + - 'linux/**' + - 'macos/**' + - 'windows/**' + - '.gitignore' + - '.gitmodules' + - 'README.md' + - 'LICENSE' concurrency: group: deploy cancel-in-progress: false diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 04f9850..ce592cb 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -2,12 +2,25 @@ name: Windows build on: push: branches: [master] + paths-ignore: + - 'android/**' + - 'ios/**' + - 'linux/**' + - 'macos/**' + - 'web/**' + - '.gitignore' + - '.gitmodules' + - 'README.md' + - 'LICENSE' jobs: windows: runs-on: windows-latest steps: - name: Check Out - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + submodules: true + fetch-depth: 0 - name: Setup flutter uses: subosito/flutter-action@v2 with: