Skip to content

Commit

Permalink
fix(ci): revert filtering on release publish
Browse files Browse the repository at this point in the history
  • Loading branch information
chroxify committed Sep 15, 2024
1 parent c2649a0 commit 7cd9e7b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/dockerize-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest

# Only if there are changes in apps/web/** or packages/ui/**
if: |
github.event.release &&
(
contains(github.event.release.body, '[web]') ||
contains(github.event.release.body, '[ui]')
)

steps:
- uses: actions/checkout@v3

Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/publish-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ jobs:
permissions:
contents: write

# Only if there are changes in apps/desktop/** or packages/ui/**
if: |
github.event.release &&
(
contains(github.event.release.body, '[desktop]') ||
contains(github.event.release.body, '[ui]')
)
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 7cd9e7b

Please sign in to comment.