ci(appup): upload appup files when ci check fails

Often we have to remember to update both local tags and local
dependencies, and even so local results might differ from what the CI
check expects.  To help fixing expected appup file differences, we can
upload what CI produced to apply to our branch.
This commit is contained in:
Thales Macedo Garitezi 2022-06-09 11:34:58 -03:00
parent 8a89fb2238
commit 34d84599c3
No known key found for this signature in database
GPG Key ID: DD279F8152A9B6DD
1 changed files with 7 additions and 0 deletions

View File

@ -29,3 +29,10 @@ jobs:
run: ./scripts/update-appup.sh emqx-ee --check run: ./scripts/update-appup.sh emqx-ee --check
- name: Check apps version - name: Check apps version
run: ./scripts/apps-version-check.sh run: ./scripts/apps-version-check.sh
- uses: actions/upload-artifact@v3.1.0
if: failure()
with:
name: expected_appup_files
path: |
{src,apps}/**/*.appup.src
retention-days: 1