Skip to content

Commit 0daeb9a

Browse files
committed
ensure artefact creation doesn't get skipped spuriously
1 parent 4e749d9 commit 0daeb9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/conda-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
id: prepare-artifacts
184184
shell: bash
185185
# we do not want to trigger artefact creation if the build was cancelled
186-
if: ${{ steps.determine-status.outputs.status != 'cancelled' }}
186+
if: ${{ always() && steps.determine-status.outputs.status != 'cancelled' }}
187187
env:
188188
CI: github_actions
189189
CONFIG: ${{ matrix.CONFIG }}

0 commit comments

Comments
 (0)