Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Upload artifacts (macOS)
if: matrix.platform == 'mac'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lume-macos
path: |
Expand All @@ -69,7 +69,7 @@ jobs:

- name: Upload artifacts (Linux)
if: matrix.platform == 'linux'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lume-linux
path: |
Expand All @@ -79,7 +79,7 @@ jobs:

- name: Upload artifacts (Windows)
if: matrix.platform == 'windows'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lume-windows
path: release/*.exe
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: npm run build:electron

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-output
path: dist/
Expand Down Expand Up @@ -141,15 +141,15 @@ jobs:
CI: true

- name: Upload Playwright Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 7

- name: Upload Test Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: test-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
fi

- name: Upload coverage artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: coverage-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:

- name: Upload nightly artifacts (macOS)
if: matrix.platform == 'mac'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nightly-macos-${{ steps.sha.outputs.short }}
path: |
Expand All @@ -144,7 +144,7 @@ jobs:

- name: Upload nightly artifacts (Linux)
if: matrix.platform == 'linux'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nightly-linux-${{ steps.sha.outputs.short }}
path: |
Expand All @@ -155,7 +155,7 @@ jobs:

- name: Upload nightly artifacts (Windows)
if: matrix.platform == 'windows'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nightly-windows-${{ steps.sha.outputs.short }}
path: release/nightly-*.exe
Expand Down
Loading