We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fba0b commit a884ebcCopy full SHA for a884ebc
.github/workflows/android-ci.yml
@@ -6,8 +6,10 @@ on:
6
tags:
7
- '*.*.*'
8
paths-ignore:
9
+ - 'LICENSE'
10
- '**/README.md'
11
- 'screenshots/**'
12
+ - '.github/FUNDING.yml'
13
- '.gitignore'
14
- '.idea/**'
15
- '.run/**'
@@ -17,8 +19,10 @@ on:
17
19
18
20
21
22
23
24
25
26
27
28
@@ -50,7 +54,9 @@ jobs:
50
54
- name: 🔨 Build with Gradle
51
55
env:
52
56
VERSION_TAG: ${{ steps.vars.outputs.tag }}
53
- run: ./gradlew :library:assembleRelease
57
+ run: |
58
+ echo $VERSION_TAG
59
+ ./gradlew :library:assembleRelease
60
61
# https://github.com/actions/upload-artifact
62
- name: 📦 Retain Artifacts (Release AAR)
0 commit comments