diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c330180..7712afd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: - name: Installing dependencies for Ubuntu if: startsWith(matrix.os, 'ubuntu') run: sudo apt install --no-install-recommends -y libopenjp2-tools rpm libarchive-tools - + - name: Check out Git repository uses: actions/checkout@v1 @@ -40,6 +40,10 @@ jobs: # (No need to define this secret in the repo settings) github_token: ${{ secrets.github_token }} + args: "--x64 --armv7l --arm64" + + max_attempts: "3" + # If the commit is tagged with a version (e.g. "v1.0.0"), # release the app after building release: ${{ startsWith(github.ref, 'refs/tags/v') }} |
