aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2020-07-02 23:53:31 +0530
committerGitHub <noreply@github.com>2020-07-02 20:23:31 +0200
commit9fb492b572d7807450f0752c6222fe0e246acea9 (patch)
tree120fa03d2dccf1b0c5e2cc69671aae18b4eb6536 /.github
parentca9c951a536e9ccd2bf3e8f0e2e0a48992d0d655 (diff)
Deploy both variants to snapshot directory (#914)
* Deploy both free and non-free variants Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: add product flavor to APK name Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deploy_snapshot.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml
index 5b3b1cc4..621f12ef 100644
--- a/.github/workflows/deploy_snapshot.yml
+++ b/.github/workflows/deploy_snapshot.yml
@@ -51,7 +51,7 @@ jobs:
run: ./gradlew dependencies
- name: Build release app
- run: ./gradlew :app:assembleFreeRelease
+ run: ./gradlew :app:assembleFreeRelease :app:assembleNonFreeRelease
env:
SNAPSHOT: "true"
@@ -76,6 +76,8 @@ jobs:
run: npm install -g cloudflare-cli
- name: Purge Cloudflare cache
- run: cfcli --token ${CF_TOKEN} purge "https://dl.msfjarvis.dev/APS/$(cd ./app/build/outputs/apk/release/; ls *.apk)"
+ run: |
+ cfcli --token ${CF_TOKEN} purge "https://dl.msfjarvis.dev/APS/$(cd ./app/build/outputs/apk/nonFree/release/; ls *.apk)"
+ cfcli --token ${CF_TOKEN} purge "https://dl.msfjarvis.dev/APS/$(cd ./app/build/outputs/apk/free/release/; ls *.apk)"
env:
CF_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}