Skip to content

Commit e23d882

Browse files
committed
GitHub Action workflows cannot be in a sub folder
1 parent 6136755 commit e23d882

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
- "docs/**"
1818
jobs:
1919
build_element_call:
20-
uses: ./.github/workflows/lib/build-element-call.yaml
20+
uses: ./.github/workflows/build-element-call.yaml
2121
with:
2222
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
2323
secrets:

.github/workflows/pr-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
needs: prdetails
2525
permissions:
2626
deployments: write
27-
uses: ./.github/workflows/lib/deploy-to-netlify.yaml
27+
uses: ./.github/workflows/deploy-to-netlify.yaml
2828
with:
2929
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
3030
pr_number: ${{ needs.prdetails.outputs.pr_number }}
@@ -42,7 +42,7 @@ jobs:
4242
permissions:
4343
contents: write
4444
packages: write
45-
uses: ./.github/workflows/lib/build-and-publish-docker.yaml
45+
uses: ./.github/workflows/build-and-publish-docker.yaml
4646
with:
4747
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
4848
docker_tags: |

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
build_element_call:
1818
if: ${{ github.event_name == 'release' }}
19-
uses: ./.github/workflows/lib/build-element-call.yaml
19+
uses: ./.github/workflows/build-element-call.yaml
2020
with:
2121
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
2222
secrets:
@@ -62,7 +62,7 @@ jobs:
6262
permissions:
6363
contents: write
6464
packages: write
65-
uses: ./.github/workflows/lib/build-and-publish-docker.yaml
65+
uses: ./.github/workflows/build-and-publish-docker.yaml
6666
with:
6767
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
6868
docker_tags: |

0 commit comments

Comments
 (0)