ci: fix build workflow conditions

This commit is contained in:
Nicolas Giard 2023-04-24 18:08:01 -04:00 committed by GitHub
parent 27ae8a6734
commit 502fa41560
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -414,6 +414,10 @@ jobs:
PKG_VERSION: ${{needs.prepare.outputs.pkg_version}}
steps:
- name: test
run: |
echo "${{ join(needs.*.result, ',') }}"
- name: Notify on Slack (Success)
if: ${{ contains(join(needs.*.result, ','), 'failure') == 'false' }}
uses: slackapi/slack-github-action@v1.23.0