diff options
author | Ben V. Brown <[email protected]> | 2020-09-06 11:10:06 +1000 |
---|---|---|
committer | Ben V. Brown <[email protected]> | 2020-09-06 11:10:06 +1000 |
commit | 8a4b0af44dd979e3e10eaabbdfbeca9f3d4f3749 (patch) | |
tree | 4748c2ea049609bff87a8379037e81c43358b6af /.github | |
parent | aa51c62bdf0ea72c4579c2d291ddba7a8d244609 (diff) | |
download | IronOS-8a4b0af44dd979e3e10eaabbdfbeca9f3d4f3749.tar.gz IronOS-8a4b0af44dd979e3e10eaabbdfbeca9f3d4f3749.zip |
Testing
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ccpp.yml | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index a13fc675..c983a9c8 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -17,8 +17,21 @@ jobs: python3 make_translation.py - name: make run: ./build.sh - - name: Archive production artifacts - uses: actions/upload-artifact@v1 + - name: Archive TS80 artifacts + uses: actions/upload-artifact@v2 with: - name: compiled - path: ci/artefacts + name: TS80 + path: ci/artefacts/TS80_* + if-no-files-found: error + - name: Archive TS80P artifacts + uses: actions/upload-artifact@v2 + with: + name: TS80P + path: ci/artefacts/TS80P_* + if-no-files-found: error + - name: Archive TS100 artifacts + uses: actions/upload-artifact@v2 + with: + name: TS100 + path: ci/artefacts/TS100_* + if-no-files-found: error |