Skip to content

Commit

Permalink
make artifact uniq per matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZibanPirate committed Sep 15, 2024
1 parent b8a9431 commit 744551d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.deploy.stg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build output
name: build output (ubuntu-latest, 20)
- name: "SSH"
uses: shimataro/ssh-key-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build output
name: build output (ubuntu-latest, 20)
- name: "SSH"
uses: shimataro/ssh-key-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.reusable.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: build output
name: build output (${{ inputs.os }}, ${{ inputs.node-version }})
path: |
**/dist/**
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.reusable.lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build output
name: build output (${{ inputs.os }}, ${{ inputs.node-version }})
- run: npm run lint:alone
2 changes: 1 addition & 1 deletion .github/workflows/ci.reusable.misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build output
name: build output (${{ inputs.os }}, ${{ inputs.node-version }})
- run: npx lerna run bundle:alone --scope @dzcode.io/web
- run: npx lerna run generate:sitemap --scope @dzcode.io/web
- run: npx lerna run generate:htmls --scope @dzcode.io/web
2 changes: 1 addition & 1 deletion .github/workflows/ci.reusable.test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build output
name: build output (${{ inputs.os }}, ${{ inputs.node-version }})
- run: npm run test:alone -- -- --coverage
2 changes: 1 addition & 1 deletion .github/workflows/ci.reusable.test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build output
name: build output (${{ inputs.os }}, ${{ inputs.node-version }})
- name: "E2E"
uses: cypress-io/github-action@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build output
name: build output (ubuntu-latest, 20)

- name: "CodeQL setup for ${{ matrix.language }}"
uses: github/codeql-action/init@v3
Expand Down

0 comments on commit 744551d

Please sign in to comment.