Skip to content

Commit 4f5b08f

Browse files
committed
Fix GHA
1 parent c1a391f commit 4f5b08f

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/backend-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Backend CI
33
on:
44
workflow_call:
55
inputs:
6+
base-tag:
7+
required: true
8+
type: string
69
image-name-prefix:
710
required: true
811
type: string

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,21 @@ jobs:
6464
python-version: ["3.13", "3.12", "3.11", "3.10"]
6565
plone-version: ["6.1-latest", "6.0-latest"]
6666
with:
67-
base-tag: ${{ needs.config.outputs.BASE_TAG }}
6867
python-version: ${{ matrix.python-version }}
6968
plone-version: ${{ matrix.plone-version }}
7069
if: ${{ needs.config.outputs.backend == 'true' }}
7170

7271
backend-release:
7372
uses: ./.github/workflows/backend-release.yml
7473
needs:
75-
- config
76-
- backend
74+
- config
75+
- backend
7776
with:
78-
image-name-prefix: ${{ needs.config.outputs.IMAGE_NAME_PREFIX }}
79-
image-name-suffix: backend
80-
python-version: ${{ needs.config.outputs.PYTHON_VERSION }}
81-
plone-version: ${{ needs.config.outputs.PLONE_VERSION }}
77+
base-tag: ${{ needs.config.outputs.BASE_TAG }}
78+
image-name-prefix: ${{ needs.config.outputs.IMAGE_NAME_PREFIX }}
79+
image-name-suffix: backend
80+
python-version: ${{ needs.config.outputs.PYTHON_VERSION }}
81+
plone-version: ${{ needs.config.outputs.PLONE_VERSION }}
8282
if: ${{ needs.config.outputs.backend == 'true' }}
8383
permissions:
8484
contents: read

0 commit comments

Comments
 (0)