Skip to content

Commit 8332713

Browse files
authored
always upload build artifacts (#70)
1 parent be93761 commit 8332713

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/build-repository/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ runs:
120120
path: lib/*.tgz
121121

122122
- name: Upload additional artifacts
123-
if: ${{ inputs.artifact-path != '' && inputs.artifact-name != '' }}
123+
if: ${{ always() && inputs.artifact-path != '' && inputs.artifact-name != '' }}
124124
uses: actions/upload-artifact@v4
125125
with:
126126
name: ${{ inputs.artifact-name }}

.github/workflows/build-lint-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
artifact-path: ${{ inputs.artifact-path }}
7373
artifact-name: ${{ inputs.artifact-name }}
7474
- name: Codecov
75-
if: ${{ inputs.skip-codecov == false && always() }}
75+
if: ${{ inputs.skip-codecov == false }}
7676
uses: codecov/codecov-action@v4
7777
with:
7878
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)