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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
cd cli/build/native/nativeCompile
7z a ketch-cli-${KETCH_VERSION#v}-${{ matrix.os }}-${{ matrix.arch }}.zip ketch.exe

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ketch-cli-${{ matrix.os }}-${{ matrix.arch }}
path: cli/build/native/nativeCompile/ketch-cli-*.${{ matrix.ext }}
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
APK=$(find app/android/build/outputs/apk/release -name '*.apk' | head -1)
cp "$APK" app/android/build/outputs/apk/release/ketch-android-${KETCH_VERSION#v}.apk

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ketch-android
path: app/android/build/outputs/apk/release/ketch-android-*.apk
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
DEST="app/desktop/build/ketch-desktop-${KETCH_VERSION#v}-${{ matrix.os }}-${{ matrix.arch }}.${{ matrix.ext }}"
cp "$SRC" "$DEST"

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ketch-desktop-${{ matrix.name }}
path: app/desktop/build/ketch-desktop-*.${{ matrix.ext }}
Expand All @@ -221,7 +221,7 @@ jobs:
cd app/web/build/dist/wasmJs/productionExecutable
zip -r /tmp/ketch-web-${KETCH_VERSION#v}.zip .

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ketch-web
path: /tmp/ketch-web-*.zip
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-results-jvm
path: '**/build/test-results/**/TEST-*.xml'
Expand All @@ -57,7 +57,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-results-android
path: '**/build/test-results/**/TEST-*.xml'
Expand All @@ -80,7 +80,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-results-ios
path: '**/build/test-results/**/TEST-*.xml'
Expand All @@ -103,7 +103,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-results-js
path: '**/build/test-results/**/TEST-*.xml'
Expand Down
Loading