Skip to content

Commit

Permalink
Attempt to fix gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Rikthepixel committed Jan 7, 2024
1 parent 69515a3 commit c223051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/microservices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
build:
needs: [changes, config-changes, lint, test]
if: (github.event_name == 'release' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)) && (needs.changes.outputs.apps != '[]' || needs.config-changes.outputs.configs != '[]')
if: always() && (needs.lint.result == 'success' || needs.lint.result == 'skipped') && (needs.test.result == 'success' || needs.test.result == 'skipped') && (github.event_name == 'release' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)) && (needs.changes.outputs.apps != '[]' || needs.config-changes.outputs.configs != '[]')
runs-on: ubuntu-latest
environment: production
strategy:
Expand Down

0 comments on commit c223051

Please sign in to comment.