Do not overwrite GORELEASER_CURRENT_TAG if already declared (#260)

This commit is contained in:
CrazyMax 2020-12-02 16:50:57 +01:00
parent c1dfc73b78
commit 56f5b77f7f
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
3 changed files with 10 additions and 2 deletions

View file

@ -44,7 +44,9 @@ async function run(): Promise<void> {
}
core.info('🏃 Running GoReleaser...');
process.env.GORELEASER_CURRENT_TAG = tag;
if (!('GORELEASER_CURRENT_TAG' in process.env)) {
process.env.GORELEASER_CURRENT_TAG = tag;
}
await exec.exec(`${goreleaser} ${args}${snapshot}`);
} catch (error) {
core.setFailed(error.message);