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 535a401 commit 5f03a5bCopy full SHA for 5f03a5b
.gitlab-ci.yml
@@ -1,6 +1,7 @@
1
stages:
2
- build
3
- deploy
4
+ - publish
5
6
linux-builder:
7
stage: build
@@ -135,7 +136,7 @@ deployer:
135
136
- deploy/*
137
script:
138
- mkdir -p deploy;
- - touch deploy/TEST;
139
+ - touch deploy/TEST-DEPLOY;
140
- ls
141
- echo "Deploy me please"
142
when: manual
@@ -145,3 +146,22 @@ deployer:
145
146
- /^release.*$/
147
tags:
148
- linux-bionic
149
+
150
+publisher:
151
+ stage: publish
152
+ artifacts:
153
+ expire_in: 4 weeks
154
+ paths:
155
+ - publish/*
156
+ script:
157
+ - mkdir -p publish;
158
+ - touch publish/TEST-PUBLISH;
159
+ - ls
160
+ - echo "Publish me please"
161
+ when: manual
162
+ except:
163
+ - tags
164
+ only:
165
+ - /^release.*$/
166
+ tags:
167
+ - linux-bionic
0 commit comments