Skip to content

Commit 215af6b

Browse files
committed
chore: fix naming conflicts
1 parent 2132842 commit 215af6b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/_ci-build-tauri-package-app.reusable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,8 @@ jobs:
342342
id: upload-archive
343343
uses: ./.github/workflows/actions/upload-archive
344344
with:
345-
name: tauri-package-app-${{ runner.os }}
346-
output: tauri-package-app-${{ runner.os }}/artifact.zip
345+
name: tauri-package-app-${{ runner.os }}-${{ runner.arch == 'ARM64' && 'ARM64' || 'x64' }}
346+
output: tauri-package-app-${{ runner.os }}-${{ runner.arch == 'ARM64' && 'ARM64' || 'x64' }}/artifact.zip
347347
paths: fixtures/package-tests/tauri-app/src-tauri/target
348348
cache_key_prefix: tauri-package-app
349349
retention_days: '90'

.github/workflows/_ci-package.reusable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ jobs:
9797
if: inputs.service == 'tauri' || inputs.service == 'both'
9898
uses: ./.github/workflows/actions/download-archive
9999
with:
100-
name: tauri-package-app-${{ runner.os }}
101-
path: tauri-package-app-${{ runner.os }}
100+
name: tauri-package-app-${{ runner.os }}-${{ runner.arch == 'ARM64' && 'ARM64' || 'x64' }}
101+
path: tauri-package-app-${{ runner.os }}-${{ runner.arch == 'ARM64' && 'ARM64' || 'x64' }}
102102
filename: artifact.zip
103103
cache_key_prefix: tauri-package-app
104104
exact_cache_key: ${{ inputs.tauri_cache_key || '' }}

0 commit comments

Comments
 (0)