GitHub Action workflows cannot be in a sub folder
This commit is contained in:
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
@@ -17,7 +17,7 @@ on:
|
|||||||
- "docs/**"
|
- "docs/**"
|
||||||
jobs:
|
jobs:
|
||||||
build_element_call:
|
build_element_call:
|
||||||
uses: ./.github/workflows/lib/build-element-call.yaml
|
uses: ./.github/workflows/build-element-call.yaml
|
||||||
with:
|
with:
|
||||||
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
|
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
|
||||||
secrets:
|
secrets:
|
||||||
|
|||||||
4
.github/workflows/pr-deploy.yaml
vendored
4
.github/workflows/pr-deploy.yaml
vendored
@@ -24,7 +24,7 @@ jobs:
|
|||||||
needs: prdetails
|
needs: prdetails
|
||||||
permissions:
|
permissions:
|
||||||
deployments: write
|
deployments: write
|
||||||
uses: ./.github/workflows/lib/deploy-to-netlify.yaml
|
uses: ./.github/workflows/deploy-to-netlify.yaml
|
||||||
with:
|
with:
|
||||||
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
|
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
|
||||||
pr_number: ${{ needs.prdetails.outputs.pr_number }}
|
pr_number: ${{ needs.prdetails.outputs.pr_number }}
|
||||||
@@ -42,7 +42,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
packages: write
|
packages: write
|
||||||
uses: ./.github/workflows/lib/build-and-publish-docker.yaml
|
uses: ./.github/workflows/build-and-publish-docker.yaml
|
||||||
with:
|
with:
|
||||||
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
|
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
|
||||||
docker_tags: |
|
docker_tags: |
|
||||||
|
|||||||
4
.github/workflows/publish.yaml
vendored
4
.github/workflows/publish.yaml
vendored
@@ -16,7 +16,7 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
build_element_call:
|
build_element_call:
|
||||||
if: ${{ github.event_name == 'release' }}
|
if: ${{ github.event_name == 'release' }}
|
||||||
uses: ./.github/workflows/lib/build-element-call.yaml
|
uses: ./.github/workflows/build-element-call.yaml
|
||||||
with:
|
with:
|
||||||
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
|
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
|
||||||
secrets:
|
secrets:
|
||||||
@@ -62,7 +62,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
packages: write
|
packages: write
|
||||||
uses: ./.github/workflows/lib/build-and-publish-docker.yaml
|
uses: ./.github/workflows/build-and-publish-docker.yaml
|
||||||
with:
|
with:
|
||||||
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
|
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
|
||||||
docker_tags: |
|
docker_tags: |
|
||||||
|
|||||||
Reference in New Issue
Block a user