We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e454cf9 commit d37c4d8Copy full SHA for d37c4d8
.github/workflows/build-docker-artifacts-trigger-push.yml
@@ -82,7 +82,6 @@ jobs:
82
const result = customers.map((c) => ({
83
repository: process.env.REPOSITORY,
84
customer: c,
85
- skip: !!config.push[c].skip,
86
customer_json: JSON.stringify(config.push[c]),
87
image_tag: imageTagBranchName,
88
}));
@@ -102,7 +101,7 @@ jobs:
102
101
runs-on: ${{ inputs.runs_on }}
103
steps:
104
- name: Trigger push docker artifacts to ${{ matrix.customer.customer }}
105
- if: ${{ matrix.customer.skip != true }}
+ if: ${{ matrix.customer.customer_json.skip != true }}
106
uses: datavisyn/github-action-trigger-workflow@v1
107
with:
108
owner: "datavisyn"
0 commit comments