We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd1fbf8 commit dc42637Copy full SHA for dc42637
.github/workflows/android.yml
@@ -40,10 +40,12 @@ jobs:
40
ref: 'master'
41
42
- name: set SDK Branch if PR
43
+ env:
44
+ HEAD_REF: ${{ github.head_ref }}
45
if: ${{ github.event_name == 'pull_request' }}
46
run: |
- echo "SDK_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV
- echo "TRAVIS_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV
47
+ echo "SDK_BRANCH=${{ env.HEAD_REF }}" >> $GITHUB_ENV
48
+ echo "TRAVIS_BRANCH=${{ env.HEAD_REF }}" >> $GITHUB_ENV
49
- name: set SDK Branch if not pull request
50
if: ${{ github.event_name != 'pull_request' }}
51
@@ -80,7 +82,7 @@ jobs:
80
82
strategy:
81
83
fail-fast: false
84
matrix:
- api-level: [21, 26, 27, 29]
85
+ api-level: [21, 25, 26, 29]
86
steps:
87
- name: checkout
88
uses: actions/checkout@v2
0 commit comments