From 1beaf7658dbe7c7663a2e003f743f962d87a6b78 Mon Sep 17 00:00:00 2001 From: Mariotaku Date: Mon, 29 Jan 2024 14:05:40 +0900 Subject: [PATCH] updated artifact path --- .github/workflows/release.yml | 16 ++++++++-------- Cargo.lock | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d623f15..5e37ce17 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -134,10 +134,10 @@ jobs: with: name: ${{ runner.os }}-snapshot path: | - src-tauri/target/**/bundle/deb/*.deb - src-tauri/target/**/bundle/appimage/*.AppImage - src-tauri/target/**/bundle/msi/*.msi - src-tauri/target/**/bundle/dmg/*.dmg + target/**/bundle/deb/*.deb + target/**/bundle/appimage/*.AppImage + target/**/bundle/msi/*.msi + target/**/bundle/dmg/*.dmg - name: Create Release uses: ncipollo/release-action@v1 @@ -149,10 +149,10 @@ jobs: omitNameDuringUpdate: true omitBodyDuringUpdate: true omitPrereleaseDuringUpdate: true - artifacts: "src-tauri/target/**/bundle/deb/*.deb,\ - src-tauri/target/**/bundle/appimage/*.AppImage,\ - src-tauri/target/**/bundle/msi/*.msi,\ - src-tauri/target/**/bundle/dmg/*.dmg" + artifacts: "target/**/bundle/deb/*.deb,\ + target/**/bundle/appimage/*.AppImage,\ + target/**/bundle/msi/*.msi,\ + target/**/bundle/dmg/*.dmg" sentry-finalize-release: name: Finalize Sentry Release diff --git a/Cargo.lock b/Cargo.lock index 5cefe42e..a0d06439 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3787,14 +3787,14 @@ dependencies = [ [[package]] name = "tauri-plugin-single-instance" version = "0.0.0" -source = "git+https://github.com/tauri-apps/plugins-workspace?branch=dev#dce0f02bc571128308c30278cde3233f341e6a50" +source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#70d99086de3a58189d65c49954a3495972880725" dependencies = [ "log", "serde", "serde_json", "tauri", "thiserror", - "windows-sys 0.48.0", + "windows-sys 0.52.0", "zbus", ]