Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Upload coverage report
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-json
path: coverage.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
HEAD

- name: Upload source packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: source-packages
path: |
Expand Down Expand Up @@ -290,15 +290,15 @@ jobs:

- name: Upload Unix module package
if: ${{ runner.os != 'Windows' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: tinydocs-module-${{ matrix.id }}
path: ${{ steps.unix_package.outputs.archive }}
if-no-files-found: error

- name: Upload Windows module package
if: ${{ runner.os == 'Windows' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: tinydocs-module-${{ matrix.id }}
path: ${{ steps.windows_package.outputs.archive }}
Expand All @@ -318,7 +318,7 @@ jobs:
submodules: true

- name: Download workflow artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: tinydocs-module-*
path: release-assets
Expand Down