mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-06-30 02:07:30 +00:00
Mark args input as required
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ import * as exec from '@actions/exec';
|
||||
async function run(): Promise<void> {
|
||||
try {
|
||||
const version = core.getInput('version') || 'latest';
|
||||
const args = core.getInput('args');
|
||||
const args = core.getInput('args', {required: true});
|
||||
const workdir = core.getInput('workdir') || '.';
|
||||
const goreleaser = await installer.getGoReleaser(version);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user