diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 7351de6..2764cdb 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -38,7 +38,7 @@ jobs: run: flutter build apk --release --split-per-abi env: CI: true - SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} + SIGNING_KEY_ALIAS: release SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} - name: Upload artifact diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index 65518d2..c217df5 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -1,8 +1,10 @@ name: Web on: push: - branches: [master] + branches: ["*"] paths-ignore: + - '.github/workflows/android.yml' + - '.github/workflows/windows.yml' - 'android/**' - 'ios/**' - 'linux/**' diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ce592cb..db43e41 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,8 +1,10 @@ name: Windows build on: push: - branches: [master] + branches: ["*"] paths-ignore: + - '.github/workflows/android.yml' + - '.github/workflows/web.yml' - 'android/**' - 'ios/**' - 'linux/**'