From 77c3e21066ff18ed1626dbb06249edb21a2a2895 Mon Sep 17 00:00:00 2001 From: vincent Bourgmayer Date: Mon, 4 Nov 2024 10:40:00 +0100 Subject: [PATCH] chore: update .gitlab-ci to remove before_scripts step in releasing jobs --- .gitlab-ci.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index edd75f3c..41652897 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -93,8 +93,6 @@ generate-apks: dependencies: - init_submodules - build - before_script: - - apt update && apt install apksigner -y script: - | ./systemAppsUpdateInfo/scripts/generate-apks.sh \ @@ -117,8 +115,6 @@ create-json-files: rules: - if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_PROTECTED == "true"' when: on_success - before_script: - - apt update && apt install jq aapt -y script: - | ./systemAppsUpdateInfo/scripts/create-json-files.sh \ @@ -140,8 +136,6 @@ create-test-release: rules: - if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_PROTECTED == "true"' when: manual - before_script: - - apt update && apt install jq -y script: - | ./systemAppsUpdateInfo/scripts/create-test-release.sh \ @@ -159,10 +153,9 @@ create-release: rules: - if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_PROTECTED == "true"' when: manual - before_script: - - apt update && apt install jq -y script: - | ./systemAppsUpdateInfo/scripts/create-release.sh \ "$APK_PATH" "$UNSIGNED_APK" "$COMMUNITY_APK" "$OFFICIAL_APK" - allow_failure: true \ No newline at end of file + allow_failure: true + \ No newline at end of file -- GitLab