Skip to content

Commit

Permalink
fix: Omit ~/go/bin from task
Browse files Browse the repository at this point in the history
  • Loading branch information
sbp-bvanb committed Dec 13, 2024
1 parent 1eb8f43 commit d8939bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ vars:
GOBIN:
sh: |
if [ -z "${GOBIN}" ]; then
if [ "$GITHUB_ACTIONS" = "true" ]; then
echo "Running inside a GitHub Actions runner."
echo /home/runner/go/bin
fi
echo "GOBIN has not been not set. Ensure that it has been set on the system."
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ runs:
if: inputs.testing-type == 'component' || inputs.testing-type == 'coverage' || inputs.testing-type == 'integration' || inputs.testing-type == 'lint' || inputs.testing-type == 'unit'
shell: bash
run: |
if ! ~/go/bin/task --version | grep -q "Task version: ${{ inputs.task-version }}"; then
if ! task --version | grep -q "Task version: ${{ inputs.task-version }}"; then
major_version=$(echo "${{ inputs.task-version }}" | sed -E 's/^v([0-9]+).*/\1/')
go install github.com/go-task/task/v${major_version}/cmd/task@${{ inputs.task-version }}
fi
Expand Down

0 comments on commit d8939bf

Please sign in to comment.