Skip to content

Commit

Permalink
fix(ci): Run release if dependencies are skipped (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
leviem1 authored Sep 29, 2024
1 parent 3c2eeec commit d2d3d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- build
- test
runs-on: ubuntu-latest
if: github.ref_type == 'tag' || (github.ref_name == 'main' && github.event_name != 'schedule')
if: ${{ !failure() && (github.ref_type == 'tag' || (github.ref_name == 'main' && github.event_name != 'schedule')) }}
steps:
- name: Set snapshot environment
if: github.ref_name == 'main'
Expand Down

0 comments on commit d2d3d45

Please sign in to comment.