Skip to content

Commit

Permalink
fix(ci): fixed download matrixes step for pages and relase-body-driver.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Oct 4, 2023
1 parent 8a00101 commit 4e14e58
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Download matrixes
- name: Download matrix X64
uses: actions/download-artifact@v3
with:
name: matrix_master_*
name: matrix_master_X64

- name: Download matrix ARM64
uses: actions/download-artifact@v3
with:
name: matrix_master_ARM64

- name: Disable Table Of Content for matrixes pages
run: |
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/release-body-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,15 @@ jobs:
echo '!'"[SCHEMA](https://img.shields.io/badge/SCHEMA-${SCHEMA_VERS}-yellow)" >> release-body.md
echo "" >> release-body.md
- name: Download matrixes
- name: Download matrix X64
uses: actions/download-artifact@v3
with:
name: matrix_${{ github.event.release.tag_name }}_*
name: matrix_${{ github.event.release.tag_name }}_X64

- name: Download matrix ARM64
uses: actions/download-artifact@v3
with:
name: matrix_${{ github.event.release.tag_name }}_ARM64

# Steps:
# Remove everything after the table (ie: since the first line that starts with "# ",
Expand Down

0 comments on commit 4e14e58

Please sign in to comment.