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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:

- name: Upload logs artifact
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: exist-${{ matrix.exist-version }}-log
path: exist.log
Expand All @@ -133,15 +133,15 @@ jobs:

- name: Upload cypress screenshots
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cypress-screenshots-${{ matrix.exist-version }}-${{ matrix.java-version }}-${{ matrix.experimental && 'experimental' || 'stable' }}
path: test/cypress/screenshots/

# Upload build artifacts
- name: Upload build artifacts
if: success()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: xar-package-${{ matrix.exist-version }}-${{ matrix.java-version }}-${{ matrix.experimental && 'experimental' || 'stable' }}
path: build/*.xar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Publish log as artifact
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: exist-${{matrix.EXIST_BASE}}-teipublisher.log
path: ./exist.log
Expand Down
Loading