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