Skip to content

Commit ac87416

Browse files
authored
Merge pull request #222 from olafurpg/parallel-release
Split release stage into parallel jobs.
2 parents aae1dca + 41f8b80 commit ac87416

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,17 @@ jobs:
3333
- stage: release
3434
script:
3535
- echo "$PGP_SECRET" | base64 --decode | gpg --import
36-
- mill __.publish --sonatypeCreds "$SONATYPE_USERNAME:$SONATYPE_PASSWORD" --release true --gpgPassphrase "$PGP_PASSPHRASE"
36+
- mill __[2.12.7].publish --sonatypeCreds "$SONATYPE_USERNAME:$SONATYPE_PASSWORD" --release true --gpgPassphrase "$PGP_PASSPHRASE"
37+
38+
- stage: release
39+
script:
40+
- echo "$PGP_SECRET" | base64 --decode | gpg --import
41+
- mill __[2.11.12].publish --sonatypeCreds "$SONATYPE_USERNAME:$SONATYPE_PASSWORD" --release true --gpgPassphrase "$PGP_PASSPHRASE"
42+
43+
- stage: release
44+
script:
45+
- echo "$PGP_SECRET" | base64 --decode | gpg --import
46+
- mill __[2.13.0-RC1].publish --sonatypeCreds "$SONATYPE_USERNAME:$SONATYPE_PASSWORD" --release true --gpgPassphrase "$PGP_PASSPHRASE"
3747

3848
before_install:
3949
- curl -L -o ~/bin/mill https://github.com/lihaoyi/mill/releases/download/0.3.6/0.3.6-85-38fce6 && chmod +x ~/bin/mill

0 commit comments

Comments
 (0)