We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a950f3 commit 828176fCopy full SHA for 828176f
.github/workflows/ci.yml
@@ -136,6 +136,8 @@ jobs:
136
DASH_AUTH: ${{ secrets.PLUGIN_DASH }}
137
shell: bash
138
run: |
139
+ os=$(echo "${{ matrix.os }}" | awk -F- '{ print $1 }')
140
+
141
test_status=$([ '${{ steps.unit-tests.outcome }}' == 'success' ] && \
142
echo 'true' || echo 'false')
143
@@ -152,6 +154,7 @@ jobs:
152
154
"{\"id\":\"$(echo "${{ github.repository }}" | awk -F/ '{ print $2 }')\",\
153
155
\"github_ref\":\"${{ github.sha }}\",\
156
\"url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\",\
157
+ \"os\":\"$os\",\
158
\"build\":$build_status,\
159
\"tests\":$test_status,\
160
\"binary\":$binary_status}"\
0 commit comments