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 ae9e920 commit 1403b62Copy full SHA for 1403b62
.github/workflows/publish-release.yml
@@ -12,6 +12,17 @@ jobs:
12
uses: actions/checkout@v3
13
- name: Setup Gradle
14
uses: gradle/gradle-build-action@v2
15
+ - name: Setup local.properties
16
+ run: |
17
+ cat << EOF >> local.properties
18
+ sdk.dir=$ANDROID_HOME
19
+ host="${{ secrets.HOST }}"
20
+ APIKey="${{ secrets.API_KEY }}"
21
+ deliveryToken="${{ secrets.DELIVERY_TOKEN }}"
22
+ environment="${{ secrets.ENVIRONMENT }}"
23
+ contentType="${{ secrets.CONTENT_TYPE }}"
24
+ assetUid="${{ secrets.ASSET_UID }}"
25
+ EOF
26
- name: Gradle build and clean
27
run: |
28
./gradlew clean build
0 commit comments