From d3822b0bb0fd34bd0d20f07a19e3f764cf6dacf0 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 21 Nov 2020 13:21:55 +0100 Subject: [PATCH] chore: Fix CI variables --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2157c2bf..a0dfce81 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -67,6 +67,10 @@ build_android_debug: build_android_apk: stage: coverage script: [./scripts/build-android-apk.sh] + variables: + FDROID_KEY: ${FDROID_KEY} + FDROID_KEY_PASS: ${FDROID_KEY_PASS} + GOOGLE_SERVICES: ${GOOGLE_SERVICES} artifacts: when: on_success paths: @@ -78,6 +82,10 @@ build_android_apk: build_android_appbundle: stage: coverage script: [./scripts/build-android-appbundle.sh] + variables: + FDROID_KEY: ${FDROID_KEY} + FDROID_KEY_PASS: ${FDROID_KEY_PASS} + GOOGLE_SERVICES: ${GOOGLE_SERVICES} artifacts: when: on_success paths: @@ -141,6 +149,8 @@ build_linux: snap:edge: stage: publish image: "cibuilds/snapcraft:core18" + variables: + SNAPCRAFT_LOGIN_FILE: ${SNAPCRAFT_LOGIN_FILE} only: - main script: [./scripts/publish-snap-edge.sh] @@ -153,6 +163,8 @@ snap:edge: snap:publish: stage: publish image: "cibuilds/snapcraft:core18" + variables: + SNAPCRAFT_LOGIN_FILE: ${SNAPCRAFT_LOGIN_FILE} only: - tags script: [./scripts/publish-snap-stable.sh]