Skip to content

Commit

Permalink
refactor: make publish for react-native wrapper better scoped
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsobarracha committed Aug 7, 2024
1 parent d46c810 commit 45a9dc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-wrapper-rn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
name: Publish unstable package release
needs: build_test
runs-on: macos-latest
if: "github.ref == 'refs/heads/master' && !(contains(github.event.head_commit.message, 'chore(release): publish') || contains(github.event.head_commit.message, 'chore(release): publish react-native'))"
if: "github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, 'chore(release): publish')"
defaults:
run:
working-directory: ./wrappers/react-native
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
name: Publish package release
needs: build_test
runs-on: macos-latest
if: "github.ref == 'refs/heads/master' && (contains(github.event.head_commit.message, 'chore(release): publish') || contains(github.event.head_commit.message, 'chore(release): publish react-native'))"
if: "github.ref == 'refs/heads/master' && (contains(github.event.head_commit.message, 'chore(release): publish') || contains(github.event.head_commit.message, 'chore(release): react-native wrapper publish'))"
defaults:
run:
working-directory: ./wrappers/react-native
Expand Down

0 comments on commit 45a9dc3

Please sign in to comment.