Skip to content

Commit

Permalink
ci: add ./ before local action path
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodrr committed Jun 10, 2023
1 parent 782fc57 commit ee2cbea
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.publish.internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v2

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Use specific Java version for the builds
uses: joschi/setup-jdk@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/android.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v2

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Use specific Java version for the builds
uses: joschi/setup-jdk@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Prepare environment
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/desktop.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Install packages
run: |
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Setup notarization
run: |
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Setup Snapcraft Auth
if: inputs.publish-snap
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Download build
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/editor.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Install packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Install packages
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/web.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Install packages
run: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
path: ./apps/web/build

- name: Setup Node
uses: .github/actions/setup-node-with-cache
uses: ./.github/actions/setup-node-with-cache

- name: Install packages
run: |
Expand Down

0 comments on commit ee2cbea

Please sign in to comment.