-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unify upload/download artifact for path sanity
- Loading branch information
Showing
3 changed files
with
346 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
name: Download Artifact | ||
description: Download a named artifact | ||
inputs: | ||
UET_ARTIFACT_NAME: | ||
description: "The known name of the artifact." | ||
required: true | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Download Timestamp | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'timestamp' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: timestamp | ||
path: "" | ||
merge-multiple: true | ||
|
||
- name: Download AutoDiscovery | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'autodiscovery' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: autodiscovery | ||
path: UET/ | ||
merge-multiple: true | ||
- name: Download Mac Logging | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'mac-logging' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: mac-logging | ||
path: UET/ | ||
merge-multiple: true | ||
|
||
- name: Download UEFS Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'uefs-win' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: uefs-win | ||
path: UET/ | ||
merge-multiple: true | ||
- name: Download Shim Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'shim-win' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: shim-win | ||
path: UET/uet.shim/bin/Release/net8.0/win-x64/publish/ | ||
merge-multiple: true | ||
- name: Download Pass 1 Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-1-win' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pass-1-win | ||
path: UET/uet/bin/Release/net8.0/win-x64/publish/ | ||
merge-multiple: true | ||
- name: Download Pass 2 Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-2-win' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pass-2-win | ||
path: UET/uet/bin/Release/net8.0/win-x64/publish/ | ||
merge-multiple: true | ||
|
||
- name: Download UEFS Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'uefs-mac' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: uefs-mac | ||
path: UET/ | ||
merge-multiple: true | ||
- name: Download Shim Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'shim-mac' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: shim-mac | ||
path: UET/uet.shim/bin/Release/net8.0/osx-arm64/publish/ | ||
merge-multiple: true | ||
- name: Download Pass 1 Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-1-mac' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pass-1-mac | ||
path: UET/uet/bin/Release/net8.0/osx-arm64/publish/ | ||
merge-multiple: true | ||
- name: Download Pass 2 Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-2-mac' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pass-2-mac | ||
path: UET/uet/bin/Release/net8.0/osx-arm64/publish/ | ||
merge-multiple: true | ||
|
||
- name: Download Libs Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'libs-win' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: libs-win | ||
path: UET/ | ||
merge-multiple: true | ||
- name: Download Libs Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'libs-mac' }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: libs-mac | ||
path: UET/ | ||
merge-multiple: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
name: Upload Artifact | ||
description: Upload a named artifact | ||
inputs: | ||
UET_ARTIFACT_NAME: | ||
description: "The known name of the artifact." | ||
required: true | ||
UET_FRAMEWORK_TARGET: | ||
description: "The target framework." | ||
required: true | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Upload Timestamp | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'timestamp' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: timestamp | ||
if-no-files-found: error | ||
path: | | ||
package.version | ||
- name: Upload AutoDiscovery | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'autodiscovery' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: autodiscovery | ||
if-no-files-found: error | ||
path: | | ||
UET/Redpoint.AutoDiscovery.Win64/bin/x64/Debug/${{ inputs.UET_FRAMEWORK_TARGET }}/** | ||
UET/Redpoint.AutoDiscovery.Win32/bin/x86/Debug/${{ inputs.UET_FRAMEWORK_TARGET }}/** | ||
UET/Redpoint.AutoDiscovery.Win64/bin/x64/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/** | ||
UET/Redpoint.AutoDiscovery.Win32/bin/x86/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/** | ||
UET/Redpoint.AutoDiscovery/bin/Release/Redpoint.AutoDiscovery.*.nupkg | ||
- name: Upload Mac Logging | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'mac-logging' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: mac-logging | ||
if-no-files-found: error | ||
path: | | ||
UET/Redpoint.Logging.Mac.Native/runtimes/osx-arm64/libLogging.arm64.dylib | ||
UET/Redpoint.Logging.Mac.Native/runtimes/osx-x64/libLogging.x64.dylib | ||
UET/Redpoint.Logging.Mac/bin/Redpoint.Logging.Mac.Native.*.nupkg | ||
- name: Upload UEFS Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'uefs-win' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: uefs-win | ||
if-no-files-found: error | ||
path: | | ||
UET/Redpoint.Uefs.Client/bin/Release/net8.0/win-x64/publish/uefs.exe | ||
UET/Redpoint.Uefs.Daemon/bin/Release/net8.0/win-x64/publish/uefs-daemon.exe | ||
- name: Upload Shim Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'shim-win' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: shim-win | ||
if-no-files-found: error | ||
path: | | ||
UET/uet.shim/bin/Release/net8.0/win-x64/publish/uet.exe | ||
- name: Upload Pass 1 Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-1-win' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pass-1-win | ||
if-no-files-found: error | ||
path: | | ||
UET/uet/bin/Release/net8.0/win-x64/publish/uet.exe | ||
- name: Upload Pass 2 Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-2-win' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pass-2-win | ||
if-no-files-found: error | ||
path: | | ||
UET/uet/bin/Release/net8.0/win-x64/publish/uet.exe | ||
- name: Upload UEFS Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'uefs-mac' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: uefs-mac | ||
if-no-files-found: error | ||
path: | | ||
UET/Redpoint.Uefs.Client/bin/Release/net8.0/osx-arm64/publish/uefs | ||
UET/Redpoint.Uefs.Daemon/bin/Release/net8.0/osx-arm64/publish/uefs-daemon | ||
- name: Upload Shim Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'shim-mac' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: shim-mac | ||
if-no-files-found: error | ||
path: | | ||
UET/uet.shim/bin/Release/net8.0/osx-arm64/publish/uet | ||
- name: Upload Pass 1 Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-1-mac' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pass-1-mac | ||
if-no-files-found: error | ||
path: | | ||
UET/uet/bin/Release/net8.0/osx-arm64/publish/uet | ||
- name: Upload Pass 2 Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-2-mac' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pass-2-mac | ||
if-no-files-found: error | ||
path: | | ||
UET/uet/bin/Release/net8.0/osx-arm64/publish/uet | ||
- name: Upload Libs Win | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'libs-win' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: libs-win | ||
if-no-files-found: error | ||
path: | | ||
**/*.nupkg | ||
- name: Upload Libs Mac | ||
if: ${{ inputs.UET_ARTIFACT_NAME == 'libs-mac' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: libs-mac | ||
if-no-files-found: error | ||
path: | | ||
**/*.nupkg | ||
Oops, something went wrong.