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.
2 parents a886cd4 + 20b205b commit d04a8c9Copy full SHA for d04a8c9
.drone.yml
@@ -72,13 +72,26 @@ pipeline:
72
environment:
73
- RELEASEBUILD=yes
74
commands:
75
+ # Produces dotty-version.{tar.gz, zip}
76
+ - ./project/scripts/sbt dist-bootstrapped/packArchive
77
- ./project/scripts/sbtPublish ";dotty-bootstrapped/publishSigned ;sonatypeRelease"
78
volumes:
79
- /home/drone/keys:/keys
80
secrets: [ sonatype_user, sonatype_pw, pgp_pw ]
81
when:
- event: deployment
- environment: release
82
+ event: tag
83
+
84
+ # Publish dotty-version.{tar.gz, zip} to GitHub Release
85
+ github_release:
86
+ image: plugins/github-release
87
+ secrets: [ github_token ]
88
+ draft: true
89
+ files:
90
+ - dist-bootstrapped/target/dotty-*
91
+ checksum:
92
+ - sha256
93
+ when:
94
95
96
publish_sbt_release:
97
image: lampepfl/dotty:2017-10-07
0 commit comments