You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below you will find the list of the latest versions of the sample apps. It's recommended to always download the latest builds of the sample apps to accurately test the pull request.
45
-
46
-
---
47
-
${{ steps.build.outputs.build-log }}
48
-
edit-mode: replace # replace the existing comment with new content since we are creating new builds
49
-
50
-
build-sample-apps:
51
-
if: ${{ always() }} # do not skip running this step if update-pr-comment does not run
52
-
needs: [update-pr-comment] # wait for PR comment to be created saying new builds are being made.
53
-
permissions:
54
-
pull-requests: write # comment on pull request with build information
55
-
strategy:
56
-
fail-fast: false # if one sample app fails to build, let the other sample apps continue to build and not cancel them.
57
-
matrix: # Use a matrix allowing us to build multiple apps in parallel. Just add an entry to the matrix and it will build!
58
-
sample-app:
59
-
# List all sample apps you want to have compiled.
60
-
# List item is name of directory inside of "Apps" directory for the corresponding app to compile.
* ${{ matrix.sample-app.name }}: Build failed. See [CI job logs](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}) to determine the issue and try re-building.
267
-
edit-mode: append # append new line to the existing PR comment to build a list of all sample app builds.
Below you will find the list of the latest versions of the sample apps. It's recommended to always download the latest builds of the sample apps to accurately test the pull request.
40
+
41
+
---
42
+
${{ steps.build.outputs.build-log }}
43
+
edit-mode: replace # replace the existing comment with new content since we are creating new builds
44
+
45
+
build-sample-apps:
46
+
if: ${{ always() }} # do not skip running this step if update-pr-comment does not run
47
+
needs: [update-pr-comment] # wait for PR comment to be created saying new builds are being made.
48
+
strategy:
49
+
fail-fast: false # if one sample app fails to build, let the other sample apps continue to build and not cancel them.
50
+
matrix: # Use a matrix allowing us to build multiple apps in parallel. Just add an entry to the matrix and it will build!
51
+
sample-app:
52
+
# List all sample apps you want to have compiled.
53
+
# List item is name of directory inside of "Apps" directory for the corresponding app to compile.
* ${{ matrix.sample-app.name }}: Build failed. See [CI job logs](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}) to determine the issue and try re-building.
92
+
edit-mode: append # append new line to the existing PR comment to build a list of all sample app builds.
0 commit comments