Skip to content

Commit

Permalink
fix: run even when prev is skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtIeSocks committed Feb 6, 2024
1 parent 962859f commit 78c1404
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
release:
uses: ./.github/workflows/release.yml
needs: [config, locales]
if: always()
docker:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository) && always()
uses: ./.github/workflows/docker.yml
needs: [config, locales]
4 changes: 3 additions & 1 deletion .github/workflows/sentry.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Sentry
on: release
on:
release:
types: [created, published]

jobs:
sentry:
Expand Down

0 comments on commit 78c1404

Please sign in to comment.