We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b247adc commit 5474adeCopy full SHA for 5474ade
1 file changed
.github/workflows/ci.yml
@@ -109,6 +109,9 @@ jobs:
109
DASH_AUTH: ${{ secrets.PLUGIN_DASH }}
110
shell: bash
111
run: |
112
+ test_status=$([ '${{ steps.tests.outcome }}' == 'success' ] && \
113
+ echo 'true' || echo 'false')
114
+
115
build_status=$([ '${{ steps.build-and-install.outcome }}' == 'success' ] && \
116
echo 'true' || echo 'false')
117
@@ -126,6 +129,7 @@ jobs:
126
129
\"url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\",\
127
130
\"os\":\"$os\",\
128
131
\"build\":$build_status,\
132
+ \"tests\":$test_status,\
133
\"binary\":$binary_status}"\
134
https://sofa-framework.org:5000/api/v1/plugins
135
0 commit comments