From 04f46bfc5bd4643207cfd4a6eab725d8241962b7 Mon Sep 17 00:00:00 2001 From: jaseg Date: Wed, 18 Nov 2020 13:30:04 +0100 Subject: Fix gitlab CI image specification --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0896758..63440ff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: on-schedule: stage: build - image: python3 + image: python:3 only: - schedules script: @@ -12,7 +12,7 @@ on-schedule: release: stage: release - image: python3 + image: python:3 script: - pip3 install gitlab-release - gitlab-release --zip "release-${CI_COMMIT_TAG}.zip" * -- cgit