Use different tags for unit tests and android test compilation.

Otherwise we will cancel one in favour of the other.
This commit is contained in:
Michael Kaye 2022-03-11 16:47:40 +00:00
parent c89554c3f6
commit 9a532fc47f
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ jobs:
name: Build Android Tests
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref == 'refs/heads/main' && format('unit-tests-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('unit-tests-develop-{0}', github.sha) || format('unit-tests-{0}', github.ref) }}
group: ${{ github.ref == 'refs/heads/main' && format('unit-tests-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('unit-tests-develop-{0}', github.sha) || format('build-android-tests-{0}', github.ref) }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3