-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: actions upload artifactv4 name (#5258)
* fix: actions/upload-artifact@v4 overwrite * fix: artifact_name * fix: download artifact_name
- Loading branch information
1 parent
fa14ff8
commit af98fc2
Showing
8 changed files
with
33 additions
and
9 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
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
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
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
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
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 |
---|---|---|
|
@@ -2,6 +2,15 @@ name: Import Save sealos from version | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
sealosVersion: | ||
type: string | ||
description: The version of sealos to save | ||
default: 4.1.7 | ||
artifact_name: | ||
type: string | ||
description: The name of the artifact to save | ||
default: sealos | ||
|
||
jobs: | ||
save-sealos: | ||
|
@@ -10,9 +19,10 @@ jobs: | |
- name: Install sealos | ||
uses: labring/[email protected] | ||
with: | ||
sealosVersion: "4.1.7" | ||
sealosVersion: ${{ inputs.sealosVersion }} | ||
- name: Save Binaries | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: sealos | ||
name: ${{ inputs.artifact_name }} | ||
path: /usr/bin/sealos | ||
overwrite: 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
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