Skip to content

Commit d37c4d8

Browse files
committed
Fix skip repo ability in push docker artifacts
1 parent e454cf9 commit d37c4d8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build-docker-artifacts-trigger-push.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ jobs:
8282
const result = customers.map((c) => ({
8383
repository: process.env.REPOSITORY,
8484
customer: c,
85-
skip: !!config.push[c].skip,
8685
customer_json: JSON.stringify(config.push[c]),
8786
image_tag: imageTagBranchName,
8887
}));
@@ -102,7 +101,7 @@ jobs:
102101
runs-on: ${{ inputs.runs_on }}
103102
steps:
104103
- name: Trigger push docker artifacts to ${{ matrix.customer.customer }}
105-
if: ${{ matrix.customer.skip != true }}
104+
if: ${{ matrix.customer.customer_json.skip != true }}
106105
uses: datavisyn/github-action-trigger-workflow@v1
107106
with:
108107
owner: "datavisyn"

0 commit comments

Comments
 (0)