diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 20f458b2..0d724e36 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -67,9 +67,6 @@ jobs: uses: actions/setup-go@v5 with: go-version: stable - - name: Install Taskfile - run: | - sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d - name: Install go dependencies run: | cd action @@ -92,9 +89,6 @@ jobs: uses: actions/setup-go@v5 with: go-version: stable - - name: Install Taskfile - run: | - sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d - name: Install go dependencies run: | cd action diff --git a/Taskfile.yml b/Taskfile.yml index d3e79e1f..dc90bba2 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -8,7 +8,7 @@ tasks: desc: Template task to build a go binary dir: action cmds: - - go build -ldflags="-s -w" -o ../bin/firmware-action-{{.OS}}-amd64-{{.SEMVER}} + - go build -ldflags="-s -w" -o ../bin/firmware-action-{{OS}}-{{ARCH}}-{{.SEMVER}} env: CGO_ENABLED: 0