Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
image: python:3.13

stages:
- prepare
- build
- deploy
- promote

lint:
stage: prepare
script:
# Configurations
- set +x
# Run lint workflows
- |
grep 'run: ' ./.github/workflows/lint.yml | sed 's/.* run: //g' | while read -r command; do
echo ' '
echo "- ${command}"
echo ' '
sh -c "${command}" || exit 1
done

build-images:
stage: build
image:
Expand All @@ -27,7 +42,7 @@ build-images:

deploy-images:
stage: deploy
image:
image:
name: mplatform/manifest-tool:alpine-v2.0.4@sha256:38b399ff66f9df247af59facceb7b60e2cd01c2d649aae318da7587efb4bbf87
entrypoint: [""]
script:
Expand Down
Loading