Skip to content

Commit

Permalink
Converted name exitstatus to pattern usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dmurphy18 committed Sep 24, 2024
1 parent 48a22b1 commit 3d58d55
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: exitstatus
name: exitstatus-${{ github.job }}
path: exitstatus/

generate-actions-workflow:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: exitstatus
name: exitstatus-${{ github.job }}
path: exitstatus/

lint:
Expand All @@ -111,7 +111,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: exitstatus
name: exitstatus-${{ github.job }}
path: exitstatus/


Expand Down Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/templates/ci-tail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/templates/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: exitstatus
name: exitstatus-${{ github.job }}
path: exitstatus/

generate-actions-workflow:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: exitstatus
name: exitstatus-${{ github.job }}
path: exitstatus/

lint:
Expand All @@ -111,5 +111,5 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: exitstatus
name: exitstatus-${{ github.job }}
path: exitstatus/
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 1 addition & 1 deletion .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 1 addition & 1 deletion .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit 3d58d55

Please sign in to comment.