diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 45e585a9..b16ca866 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -115,7 +115,6 @@ deploy_commit_image_to_tag: entrypoint: [""] variables: GIT_STRATEGY: none - PACKAGE_MANAGER: $CI_JOB_NAME RAILS_ENV: production SETTINGS__STANDALONE: "true" SETTINGS__GITLAB_URL: $CI_SERVER_URL @@ -131,6 +130,7 @@ npm-release-tools: <<: *dependabot_gitlab variables: DIRECTORY: "/" + PACKAGE_MANAGER: javascript # only: # variables: # - $PACKAGE_MANAGER_SET =~ /(\bnpm|yarn\b)/ @@ -139,6 +139,7 @@ npm-assets: <<: *dependabot_gitlab variables: DIRECTORY: "/apps/app/assets" + PACKAGE_MANAGER: javascript # only: # variables: # - $PACKAGE_MANAGER_SET =~ /(\bnpm|yarn\b)/ @@ -147,6 +148,7 @@ mix-admin: <<: *dependabot_gitlab variables: DIRECTORY: "/apps/admin" + PACKAGE_MANAGER: "elixir:hex" # only: # variables: # - $PACKAGE_MANAGER_SET =~ /\bmix\b/ @@ -155,6 +157,7 @@ mix-app: <<: *dependabot_gitlab variables: DIRECTORY: "/apps/app" + PACKAGE_MANAGER: "elixir:hex" # only: # variables: # - $PACKAGE_MANAGER_SET =~ /\bmix\b/ @@ -163,6 +166,7 @@ mix-core: <<: *dependabot_gitlab variables: DIRECTORY: "/apps/core" + PACKAGE_MANAGER: "elixir:hex" # only: # variables: # - $PACKAGE_MANAGER_SET =~ /\bmix\b/ @@ -171,6 +175,7 @@ mix-content: <<: *dependabot_gitlab variables: DIRECTORY: "/apps/content" + PACKAGE_MANAGER: "elixir:hex" # only: # variables: # - $PACKAGE_MANAGER_SET =~ /\bmix\b/ @@ -179,6 +184,7 @@ docker: <<: *dependabot_gitlab variables: DIRECTORY: "/" + PACKAGE_MANAGER: docker # only: # variables: # - $PACKAGE_MANAGER_SET =~ /\bdocker\b/