Skip to content

Commit

Permalink
Fix incorrect path in action.yml (#44)
Browse files Browse the repository at this point in the history
## Problem

I accidentally pointed towards the action file itself, rather than its
dir.

## Solution

Point to its dir in the relative path (`./.github/actions/setup`, not
`./.github/actions/setup/action.yml`).

## Type of Change

- [x] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] This change requires a documentation update
- [ ] Infrastructure change (CI configs, etc)
- [ ] Non-code change (docs, etc)
- [ ] None of the above: (explain here)
  • Loading branch information
aulorbe authored Jul 17, 2024
1 parent e9d98e1 commit 646fc54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Go
uses: ./.github/actions/setup/action.yml
uses: ./.github/actions/setup

- name: Generate Go documentation
uses: ./.github/actions/build-docs
Expand Down

0 comments on commit 646fc54

Please sign in to comment.