mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 01:30:21 +00:00
Converted name exitstatus to pattern usage
This commit is contained in:
parent
48a22b1722
commit
3d58d55fba
6 changed files with 15 additions and 13 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
@ -49,7 +49,7 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}
|
||||
path: exitstatus/
|
||||
|
||||
generate-actions-workflow:
|
||||
|
@ -86,7 +86,7 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}
|
||||
path: exitstatus/
|
||||
|
||||
lint:
|
||||
|
@ -111,7 +111,7 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}
|
||||
path: exitstatus/
|
||||
|
||||
|
||||
|
@ -512,14 +512,15 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
path: exitstatus/
|
||||
pattern: exitstatus-*
|
||||
merge-multiple: true
|
||||
|
||||
- name: Delete Exit Status Artifacts
|
||||
if: always()
|
||||
uses: geekyeggo/delete-artifact@v5
|
||||
with:
|
||||
name: exitstatus
|
||||
pattern: exitstatus-*
|
||||
failOnError: false
|
||||
|
||||
- name: Set Pipeline Exit Status
|
||||
|
|
5
.github/workflows/templates/ci-tail.yml
vendored
5
.github/workflows/templates/ci-tail.yml
vendored
|
@ -13,14 +13,15 @@
|
|||
if: always()
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
path: exitstatus/
|
||||
pattern: exitstatus-*
|
||||
merge-multiple: true
|
||||
|
||||
- name: Delete Exit Status Artifacts
|
||||
if: always()
|
||||
uses: geekyeggo/delete-artifact@v5
|
||||
with:
|
||||
name: exitstatus
|
||||
pattern: exitstatus-*
|
||||
failOnError: false
|
||||
|
||||
- name: Set Pipeline Exit Status
|
||||
|
|
6
.github/workflows/templates/ci.yml
vendored
6
.github/workflows/templates/ci.yml
vendored
|
@ -49,7 +49,7 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}
|
||||
path: exitstatus/
|
||||
|
||||
generate-actions-workflow:
|
||||
|
@ -86,7 +86,7 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}
|
||||
path: exitstatus/
|
||||
|
||||
lint:
|
||||
|
@ -111,5 +111,5 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}
|
||||
path: exitstatus/
|
||||
|
|
2
.github/workflows/test-linux.yml
vendored
2
.github/workflows/test-linux.yml
vendored
|
@ -81,5 +81,5 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}-${{ matrix.instance }}-${{ inputs.distro-slug }}
|
||||
path: exitstatus/
|
||||
|
|
2
.github/workflows/test-macos.yml
vendored
2
.github/workflows/test-macos.yml
vendored
|
@ -88,5 +88,5 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}-${{ matrix.instance }}-${{ inputs.distro-slug }}
|
||||
path: exitstatus/
|
||||
|
|
2
.github/workflows/test-windows.yml
vendored
2
.github/workflows/test-windows.yml
vendored
|
@ -117,5 +117,5 @@ jobs:
|
|||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: exitstatus
|
||||
name: exitstatus-${{ github.job }}-${{ matrix.instance }}-${{ inputs.distro-slug }}
|
||||
path: exitstatus/
|
||||
|
|
Loading…
Add table
Reference in a new issue