Skip to content

Commit

Permalink
run release if any previous jobs are skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
SelfhostedPro committed Apr 26, 2024
1 parent d079d33 commit de33564
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/armbian_custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ jobs:
needs: [build-armbian, build-dietpi, setup]
if: |
always() &&
( needs.build-armbian.result == success' || needs.build-armbian.result == 'skipped' )
( needs.build-dietpi.result == success' || needs.build-dietpi.result == 'skipped' )
( needs.build-armbian.result == 'success' || needs.build-armbian.result == 'skipped' )
( needs.build-dietpi.result == 'success' || needs.build-dietpi.result == 'skipped' )
env:
make_release: ${{ needs.setup.outputs.make_release }}
armbian_version: ${{ needs.setup.outputs.armbian_version }}
Expand Down

0 comments on commit de33564

Please sign in to comment.