Compare commits

...
1 Commits
Author SHA1 Message Date
CrazyMax 7f7463cf16 Fix tsc gen 2019-11-14 23:06:12 +01:00
+1 -2
View File
@@ -28,8 +28,7 @@ function run(silent) {
const key = core.getInput('key');
const goreleaser = yield installer.getGoReleaser(version);
let snapshot = '';
if (!process.env.GITHUB_REF ||
!process.env.GITHUB_REF.startsWith('refs/tags/')) {
if (!process.env.GITHUB_REF || !process.env.GITHUB_REF.startsWith('refs/tags/')) {
console.log(`⚠️ No tag found. Snapshot forced`);
if (!args.includes('--snapshot')) {
snapshot = ' --snapshot';