Skip to content

Commit b15727f

Browse files
committed
ci: windows does not support : in their file names
1 parent 231c240 commit b15727f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitlab-ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ check:test-generate:
7979
- mkdir -p ./tmp
8080
- >
8181
nix-shell --run '
82-
./scripts/check:test-generate.sh > ./tmp/check:test.yml
82+
./scripts/check-test-generate.sh > ./tmp/check-test.yml
8383
'
8484
artifacts:
8585
when: always
8686
paths:
87-
- ./tmp/check:test.yml
87+
- ./tmp/check-test.yml
8888
rules:
8989
# Runs on staging commits and ignores version commits
9090
- if: $CI_COMMIT_BRANCH =~ /^feature.*$/ && $CI_COMMIT_TITLE !~ /^[0-9]+\.[0-9]+\.[0-9]+(?:-.*[0-9]+)?$/
@@ -100,7 +100,7 @@ check:test:
100100
variables: false
101101
trigger:
102102
include:
103-
- artifact: tmp/check:test.yml
103+
- artifact: tmp/check-test.yml
104104
job: check:test-generate
105105
strategy: depend
106106
rules:
@@ -145,12 +145,12 @@ build:platforms-generate:
145145
- mkdir -p ./tmp
146146
- >
147147
nix-shell --run '
148-
./scripts/build:platforms-generate.sh > ./tmp/build:platforms.yml
148+
./scripts/build-platforms-generate.sh > ./tmp/build-platforms.yml
149149
'
150150
artifacts:
151151
when: always
152152
paths:
153-
- ./tmp/build:platforms.yml
153+
- ./tmp/build-platforms.yml
154154
rules:
155155
# Runs on staging commits and ignores version commits
156156
- if: $CI_COMMIT_BRANCH == 'staging' && $CI_COMMIT_TITLE !~ /^[0-9]+\.[0-9]+\.[0-9]+(?:-.*[0-9]+)?$/
@@ -165,7 +165,7 @@ build:platforms:
165165
variables: false
166166
trigger:
167167
include:
168-
- artifact: tmp/build:platforms.yml
168+
- artifact: tmp/build-platforms.yml
169169
job: build:platforms-generate
170170
strategy: depend
171171
rules:
File renamed without changes.

0 commit comments

Comments
 (0)