We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be93761 commit 8332713Copy full SHA for 8332713
.github/actions/build-repository/action.yml
@@ -120,7 +120,7 @@ runs:
120
path: lib/*.tgz
121
122
- name: Upload additional artifacts
123
- if: ${{ inputs.artifact-path != '' && inputs.artifact-name != '' }}
+ if: ${{ always() && inputs.artifact-path != '' && inputs.artifact-name != '' }}
124
uses: actions/upload-artifact@v4
125
with:
126
name: ${{ inputs.artifact-name }}
.github/workflows/build-lint-test.yml
@@ -72,7 +72,7 @@ jobs:
72
artifact-path: ${{ inputs.artifact-path }}
73
artifact-name: ${{ inputs.artifact-name }}
74
- name: Codecov
75
- if: ${{ inputs.skip-codecov == false && always() }}
+ if: ${{ inputs.skip-codecov == false }}
76
uses: codecov/codecov-action@v4
77
78
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments