We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ff3218 commit 69d2b7bCopy full SHA for 69d2b7b
.github/workflows/ci.yml
@@ -142,6 +142,8 @@ jobs:
142
DASH_AUTH: ${{ secrets.PLUGIN_DASH }}
143
shell: bash
144
run: |
145
+ os=$(echo "${{ matrix.os }}" | awk -F- '{ print $1 }')
146
+
147
test_status=$([ '${{ steps.unit-tests.outcome }}' == 'success' ] && \
148
echo 'true' || echo 'false')
149
@@ -158,6 +160,7 @@ jobs:
158
160
"{\"id\":\"$(echo "${{ github.repository }}" | awk -F/ '{ print $2 }')\",\
159
161
\"github_ref\":\"${{ github.sha }}\",\
162
\"url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\",\
163
+ \"os\":\"$os\",\
164
\"build\":$build_status,\
165
\"tests\":$test_status,\
166
\"binary\":$binary_status}"\
0 commit comments