Skip to content

Commit

Permalink
Fix if condition in android workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 8, 2022
1 parent ab3c417 commit 3e94c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,15 @@ jobs:

- name: Upload release assets
uses: AButler/upload-release-assets@v2.0
if: ${{ github.event_name == 'release' }} && ${{ matrix.all_files_access }} == "OFF"
if: ${{ github.event_name == 'release' && matrix.all_files_access == 'OFF' }}
with:
files: /tmp/qfield-*.apk
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ env.CI_TAG }}

- name: Upload debug symbols
# if: release or labeled PR
if: ${{ matrix.all_files_access }} == "OFF"
if: ${{ matrix.all_files_access == 'OFF' }}
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: |
Expand Down

1 comment on commit 3e94c13

@qfield-fairy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.