Skip to content

Commit

Permalink
build: fix action path
Browse files Browse the repository at this point in the history
  • Loading branch information
bohoffi committed Mar 10, 2024
1 parent 273250f commit de2ac34
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/MANUAL_github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup node
uses: ./github/actions/setup-node
uses: ./.github/actions/setup-node

- name: Build the docs
run: npm run docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/RELEASE_github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup node
uses: ./github/actions/setup-node
uses: ./.github/actions/setup-node

- name: Build the docs
run: npm run docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup node
uses: ./github/actions/setup-node
uses: ./.github/actions/setup-node

- name: Lint
run: npm run lint
Expand Down

0 comments on commit de2ac34

Please sign in to comment.