We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7d0dd0 commit ffd9158Copy full SHA for ffd9158
1 file changed
.github/workflows/ci.yml
@@ -37,7 +37,7 @@ jobs:
37
needs: semver
38
runs-on: ${{ matrix.os }}
39
outputs:
40
- build-result: ${{ steps.upload-bundle.outputs.conclusion }}
+ build-result: ${{ steps.bundle-status.outputs.BUNDLE_STATUS }}
41
42
defaults:
43
run:
@@ -110,6 +110,11 @@ jobs:
110
name: bundle-${{ matrix.configuration }}
111
path: ${{ env.OUTPUT_PATH }}/${{ matrix.configuration }}
112
113
+ - name: Set bundle status
114
+ if: ${{ matrix.publish }}
115
+ run: |
116
+ echo "BUNDLE_STATUS=${{ steps.upload-bundle.conclusion }}" >> $GITHUB_OUTPUT
117
+
118
- name: Test
119
if: ${{ !matrix.coverage }}
120
run: >
0 commit comments