Skip to content

Commit a884ebc

Browse files
committed
trying to get the version tag.
1 parent 84fba0b commit a884ebc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/android-ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ on:
66
tags:
77
- '*.*.*'
88
paths-ignore:
9+
- 'LICENSE'
910
- '**/README.md'
1011
- 'screenshots/**'
12+
- '.github/FUNDING.yml'
1113
- '.gitignore'
1214
- '.idea/**'
1315
- '.run/**'
@@ -17,8 +19,10 @@ on:
1719
tags:
1820
- '*.*.*'
1921
paths-ignore:
22+
- 'LICENSE'
2023
- '**/README.md'
2124
- 'screenshots/**'
25+
- '.github/FUNDING.yml'
2226
- '.gitignore'
2327
- '.idea/**'
2428
- '.run/**'
@@ -50,7 +54,9 @@ jobs:
5054
- name: 🔨 Build with Gradle
5155
env:
5256
VERSION_TAG: ${{ steps.vars.outputs.tag }}
53-
run: ./gradlew :library:assembleRelease
57+
run: |
58+
echo $VERSION_TAG
59+
./gradlew :library:assembleRelease
5460
5561
# https://github.com/actions/upload-artifact
5662
- name: 📦 Retain Artifacts (Release AAR)

0 commit comments

Comments
 (0)