mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 13:14:04 +02:00
chore(actions): file not found
This commit is contained in:
parent
c20f01eb48
commit
dab8394dd4
1 changed files with 5 additions and 4 deletions
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
|
@ -102,8 +102,10 @@ jobs:
|
|||
include:
|
||||
- args: "--target x86_64-pc-windows-msvc"
|
||||
arch: "x64"
|
||||
target: "x86_64-pc-windows-msvc"
|
||||
- args: "--target aarch64-pc-windows-msvc"
|
||||
arch: "arm64"
|
||||
target: "aarch64-pc-windows-msvc"
|
||||
runs-on: windows-latest
|
||||
env:
|
||||
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
||||
|
@ -136,7 +138,7 @@ jobs:
|
|||
- name: List Bundle Directory
|
||||
shell: pwsh
|
||||
run: |
|
||||
$bundlePath = "src-tauri/target/release/bundle/msi"
|
||||
$bundlePath = "src-tauri/target/${{ matrix.target }}/release/bundle/msi"
|
||||
if (Test-Path $bundlePath) {
|
||||
Write-Output "Contents of ${bundlePath}:"
|
||||
Get-ChildItem -Path $bundlePath
|
||||
|
@ -146,7 +148,7 @@ jobs:
|
|||
- name: Rename Windows Artifacts
|
||||
shell: pwsh
|
||||
run: |
|
||||
$bundlePath = "src-tauri/target/release/bundle/msi"
|
||||
$bundlePath = "src-tauri/target/${{ matrix.target }}/release/bundle/msi"
|
||||
$version = "${{ needs.prepare.outputs.version }}"
|
||||
$arch = "${{ matrix.arch }}"
|
||||
if (Test-Path $bundlePath) {
|
||||
|
@ -163,8 +165,7 @@ jobs:
|
|||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: windows-${{ matrix.arch }}-binaries
|
||||
path: |
|
||||
src-tauri/target/release/bundle/msi/*.msi
|
||||
path: src-tauri/target/${{ matrix.target }}/release/bundle/msi/*.msi
|
||||
|
||||
build-linux:
|
||||
permissions: write-all
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue