We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f62a2 commit f1ba921Copy full SHA for f1ba921
.gitlab-ci.yml
@@ -1,10 +1,25 @@
1
image: python:3.13
2
3
stages:
4
+ - prepare
5
- build
6
- deploy
7
- promote
8
9
+lint:
10
+ stage: prepare
11
+ script:
12
+ # Configurations
13
+ - set +x
14
+ # Run lint workflows
15
+ - |
16
+ grep 'run: ' ./.github/workflows/lint.yml | sed 's/.* run: //g' | while read -r command; do
17
+ echo ' '
18
+ echo "- ${command}"
19
20
+ sh -c "${command}" || exit 1
21
+ done
22
+
23
build-images:
24
stage: build
25
image:
@@ -27,7 +42,7 @@ build-images:
27
42
28
43
deploy-images:
29
44
stage: deploy
30
- image:
45
+ image:
31
46
name: mplatform/manifest-tool:alpine-v2.0.4@sha256:38b399ff66f9df247af59facceb7b60e2cd01c2d649aae318da7587efb4bbf87
32
47
entrypoint: [""]
33
48
script:
0 commit comments