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:
|
include:
|
||||||
- args: "--target x86_64-pc-windows-msvc"
|
- args: "--target x86_64-pc-windows-msvc"
|
||||||
arch: "x64"
|
arch: "x64"
|
||||||
|
target: "x86_64-pc-windows-msvc"
|
||||||
- args: "--target aarch64-pc-windows-msvc"
|
- args: "--target aarch64-pc-windows-msvc"
|
||||||
arch: "arm64"
|
arch: "arm64"
|
||||||
|
target: "aarch64-pc-windows-msvc"
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
env:
|
env:
|
||||||
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
||||||
|
@ -136,7 +138,7 @@ jobs:
|
||||||
- name: List Bundle Directory
|
- name: List Bundle Directory
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
$bundlePath = "src-tauri/target/release/bundle/msi"
|
$bundlePath = "src-tauri/target/${{ matrix.target }}/release/bundle/msi"
|
||||||
if (Test-Path $bundlePath) {
|
if (Test-Path $bundlePath) {
|
||||||
Write-Output "Contents of ${bundlePath}:"
|
Write-Output "Contents of ${bundlePath}:"
|
||||||
Get-ChildItem -Path $bundlePath
|
Get-ChildItem -Path $bundlePath
|
||||||
|
@ -146,7 +148,7 @@ jobs:
|
||||||
- name: Rename Windows Artifacts
|
- name: Rename Windows Artifacts
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
$bundlePath = "src-tauri/target/release/bundle/msi"
|
$bundlePath = "src-tauri/target/${{ matrix.target }}/release/bundle/msi"
|
||||||
$version = "${{ needs.prepare.outputs.version }}"
|
$version = "${{ needs.prepare.outputs.version }}"
|
||||||
$arch = "${{ matrix.arch }}"
|
$arch = "${{ matrix.arch }}"
|
||||||
if (Test-Path $bundlePath) {
|
if (Test-Path $bundlePath) {
|
||||||
|
@ -163,8 +165,7 @@ jobs:
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: windows-${{ matrix.arch }}-binaries
|
name: windows-${{ matrix.arch }}-binaries
|
||||||
path: |
|
path: src-tauri/target/${{ matrix.target }}/release/bundle/msi/*.msi
|
||||||
src-tauri/target/release/bundle/msi/*.msi
|
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue