Skip to content

Commit

Permalink
fix: actions should use absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikoTan committed Feb 16, 2024
1 parent b7b2489 commit dba2420
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Workspace
uses: ./.github/actions/setup-workspace
uses: AwesomeHamster/workflows/.github/actions/setup-workspace
with:
node-version: ${{ inputs.node-version }}
yarn-berry: ${{ inputs.yarn-berry }}
Expand All @@ -42,7 +42,7 @@ jobs:
if: ${{ inputs.lint }}
steps:
- name: Setup Workspace
uses: ./.github/actions/setup-workspace
uses: AwesomeHamster/workflows/.github/actions/setup-workspace
with:
node-version: ${{ inputs.node-version }}
yarn-berry: ${{ inputs.yarn-berry }}
Expand All @@ -55,7 +55,7 @@ jobs:
if: ${{ inputs.test }}
steps:
- name: Setup Workspace
uses: ./.github/actions/setup-workspace
uses: AwesomeHamster/workflows/.github/actions/setup-workspace
with:
node-version: ${{ inputs.node-version }}
yarn-berry: ${{ inputs.yarn-berry }}
Expand Down

0 comments on commit dba2420

Please sign in to comment.