mirror of
https://github.com/stenzek/duckstation.git
synced 2026-07-08 17:46:19 +00:00
CI: Drop unused input (#3743)
actions/upload-artifact ignores the name input when using `archive: false`
This commit is contained in:
3
.github/workflows/linux-appimage-build.yml
vendored
3
.github/workflows/linux-appimage-build.yml
vendored
@@ -17,11 +17,9 @@ jobs:
|
||||
include:
|
||||
- name: "x64"
|
||||
asset: "DuckStation-x64.AppImage"
|
||||
artifact: "linux-x64-appimage"
|
||||
cmakeoptions: ""
|
||||
- name: "x64 SSE2"
|
||||
asset: "DuckStation-x64-SSE2.AppImage"
|
||||
artifact: "linux-x64-sse2-appimage"
|
||||
cmakeoptions: "-DDISABLE_SSE4=ON"
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
@@ -74,7 +72,6 @@ jobs:
|
||||
- name: Upload AppImage
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: "${{ matrix.artifact }}"
|
||||
path: "${{ matrix.asset }}"
|
||||
archive: false
|
||||
if-no-files-found: error
|
||||
@@ -93,10 +93,9 @@ jobs:
|
||||
cmake --build build --parallel
|
||||
scripts/appimage/make-cross-appimage.sh "${{ matrix.arch }}" "$(realpath build)" "/${{ matrix.arch }}-chroot"
|
||||
|
||||
- name: Upload AppImages
|
||||
- name: Upload AppImage
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: "linux-${{ matrix.arch }}-appimage"
|
||||
path: "DuckStation-${{ matrix.arch }}.AppImage"
|
||||
archive: false
|
||||
if-no-files-found: error
|
||||
1
.github/workflows/macos-build.yml
vendored
1
.github/workflows/macos-build.yml
vendored
@@ -68,7 +68,6 @@ jobs:
|
||||
- name: Upload MacOS .app
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: "macos"
|
||||
path: "build/duckstation-mac-release.zip"
|
||||
archive: false
|
||||
if-no-files-found: error
|
||||
|
||||
3
.github/workflows/windows-build.yml
vendored
3
.github/workflows/windows-build.yml
vendored
@@ -117,7 +117,6 @@ jobs:
|
||||
- name: Upload ${{ matrix.name }} Symbols Archive
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: "windows-${{ matrix.arch }}"
|
||||
path: "duckstation-windows-${{ matrix.arch }}-release-symbols.7z"
|
||||
archive: false
|
||||
if-no-files-found: error
|
||||
@@ -142,7 +141,6 @@ jobs:
|
||||
- name: Upload ${{ matrix.name }} Release Archive
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: "windows-${{ matrix.arch }}"
|
||||
path: "${{ matrix.assetname }}"
|
||||
archive: false
|
||||
if-no-files-found: error
|
||||
@@ -157,7 +155,6 @@ jobs:
|
||||
- name: Upload ${{ matrix.name }} Installer Archive
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: "windows-${{ matrix.arch }}"
|
||||
path: "${{ matrix.installerassetname }}"
|
||||
archive: false
|
||||
if-no-files-found: error
|
||||
Reference in New Issue
Block a user