Skip to content

Commit

Permalink
reports
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou committed Jul 2, 2024
1 parent 0715580 commit eeb915c
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,20 @@ jobs:
name: pkg-${{ matrix.platform.name }}
path: build/${{ steps.make_deb.outputs.name }}

- name: "Upload Compatibility Report"
uses: actions/upload-artifact@v4
with:
name: compatibility
path: build/compatibility_report.json
if: "${{ matrix.platform.name == 'sgx' }}"

- name: "Upload TLS Report"
uses: actions/upload-artifact@v4
with:
name: tls
path: build/tls_report.html
if: "${{ matrix.platform.name == 'sgx' }}"

create_release:
needs: build_release
name: Create Release
Expand All @@ -171,10 +185,22 @@ jobs:
path: pkg
pattern: pkg-*
merge-multiple: true
- name: Download Release notes
- name: Download Release Notes
uses: actions/download-artifact@v4
with:
name: relnotes
- name: Download Compatibility Report
uses: actions/download-artifact@v4
with:
name: compatibility
path: pkg
merge-multiple: true
- name: Download TLS Report
uses: actions/download-artifact@v4
with:
name: tls
path: pkg
merge-multiple: true
- run: |
set -ex
CCF_VERSION=${${{ github.ref_name }}#ccf-}
Expand Down

0 comments on commit eeb915c

Please sign in to comment.