Merge pull request #133 from bcmi-labs/per1234/name-snapshot-archive-with-commit

Use short commit hash in "snapshot" build artifact archive filename
This commit is contained in:
Akos Kitta 2020-08-24 16:43:27 +02:00 committed by GitHub
commit ba319b23d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ function artifactName() {
} else if (isNightly) {
return `nightly-${timestamp()}`
} else {
return 'snapshot';
return getVersion();
}
})();
const name = 'arduino-pro-ide';