From 7106367713112fe2e6bedb5db76af70d4336b994 Mon Sep 17 00:00:00 2001 From: Shashank Shekhar Pandey <64682801+shashankx86@users.noreply.github.com> Date: Sun, 27 Aug 2023 05:10:34 +0000 Subject: [PATCH] CI: I added the "-v" argument to the build command. In case build fails, it will be easier to debug. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f641ca7..5d640026 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: - run: flutter pub get # 打包apk - name: Collect Apks - run: flutter build apk --release --split-per-abi + run: flutter build apk --release --split-per-abi -v env: KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} KEY_ALIAS: ${{ secrets.KEY_ALIAS }} @@ -113,7 +113,7 @@ jobs: - name: Install project dependencies run: flutter pub get - name: Build artifacts - run: flutter build windows --release + run: flutter build windows --release -v - name: Build Installer run: iex ("& {0} {1} {2}" -f '"C:\Program Files (x86)\Inno Setup 6\iscc.exe"',"/DMyAppVersion='${{github.ref_name}}'", ".\inno_setup.iss") - name: Archive Release