From 4fc4f73556e271cf51182102816a1480034704f2 Mon Sep 17 00:00:00 2001 From: cgeek <cem.moreau@gmail.com> Date: Thu, 12 Oct 2023 13:22:11 +0200 Subject: [PATCH] fix(#125): tmp: disable release creation (fix 2) --- .gitlab-ci.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5bf2076df..046bbe422 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -235,21 +235,21 @@ test_release: # expire_in: 1 day # tags: # - kepler - -create_release: - stage: create_release - rules: - - when: never - image: rust:1-bullseye - script: - # Release creation + link to artifacts - - export G1_DATA_URL="$CI_JOB_URL/artifacts/file/resources/g1-data.json" - - export GDEV_WASM_URL="$CI_JOB_URL/artifacts/file/runtime/gdev/target/srtool/release/wbuild/gdev-runtime/gdev_runtime.compact.compressed.wasm" - - export SRTOOL_OUTPUT_URL="$CI_JOB_URL/artifacts/file/srtool_output.json" - - export GDEV_RAW_SPEC_URL="$CI_JOB_URL/artifacts/file/resources/gdev-raw.json" - - cargo xtask release-runtime 600 - tags: - - kepler +# +#create_release: +# stage: create_release +# rules: +# - when: never +# image: rust:1-bullseye +# script: +# # Release creation + link to artifacts +# - export G1_DATA_URL="$CI_JOB_URL/artifacts/file/resources/g1-data.json" +# - export GDEV_WASM_URL="$CI_JOB_URL/artifacts/file/runtime/gdev/target/srtool/release/wbuild/gdev-runtime/gdev_runtime.compact.compressed.wasm" +# - export SRTOOL_OUTPUT_URL="$CI_JOB_URL/artifacts/file/srtool_output.json" +# - export GDEV_RAW_SPEC_URL="$CI_JOB_URL/artifacts/file/resources/gdev-raw.json" +# - cargo xtask release-runtime 600 +# tags: +# - kepler deploy_docker_debug_sha: stage: deploy -- GitLab