Skip to content

Commit

Permalink
Fix GHA main workflow to always deploy if no failure from previous steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Oct 1, 2024
1 parent 6f17304 commit 59bcdc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
packages: write

deploy:
if: ${{ github.ref == 'refs/heads/main' }}
if: ${{ always() && github.ref == 'refs/heads/main' && !contains(needs.*.result, 'failure') }}
needs:
- config
- backend
Expand Down
2 changes: 1 addition & 1 deletion frontend/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# kitconcept Intranet (volto-intranet)
# kitconcept Intranet (@kitconcept/volto-intranet)

A Plone distribution for Intranets with Plone. Created by kitconcept.

Expand Down

0 comments on commit 59bcdc6

Please sign in to comment.