From ae390bc52918dbe553d68c62753252a296f3d08c Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 4 Apr 2025 14:08:59 -0400 Subject: [PATCH] [fix] Requiring arch input with default --- .gitea/workflows/test.yaml | 4 +--- action.yaml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 9bd4b61..e6028d4 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -2,9 +2,7 @@ name: "test" run-name: "test" on: push: - tags: - - "v*" - - "!v*-beta*" + branches: master jobs: test: diff --git a/action.yaml b/action.yaml index dbe0be6..0ba21fe 100644 --- a/action.yaml +++ b/action.yaml @@ -3,7 +3,7 @@ description: "simple and fast install for golang and golang commands on linux wo inputs: arch: description: "Optional, the linux architecture to use when downloading Go files (default: amd64)" - required: false + required: true default: "amd64" purge: description: "Optional, deletes any previously installed go versions (yes|no)"