Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Deploy docs to GH pages

on:
release:
types: [published]
push:
branches: [main]
workflow_dispatch:

permissions:
Expand All @@ -16,7 +16,6 @@ concurrency:

jobs:
deploy:
if: github.event_name == 'workflow_dispatch' || startsWith(github.event.release.target_commitish, 'main')
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand All @@ -28,7 +27,9 @@ jobs:
fetch-depth: 0
- name: Setup
uses: ./.github/actions/setup
- name: Build
- name: Generate nitrogen code
run: yarn nitrogen
- name: Build docs
run: yarn docs
- name: Setup Pages
uses: actions/configure-pages@v5.0.0
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/prepare_dev_for_next_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Prepare dev branch for next release
on:
push:
branches: [main]
paths:
- 'package.json'

permissions:
contents: write
Expand All @@ -13,7 +11,7 @@ jobs:
update-pods:
name: Update Podfile.lock after release
runs-on: macos-latest
if: startsWith(github.event.head_commit.message, 'release:')
if: contains(join(github.event.commits.*.message, ' '), 'release')
env:
XCODE_VERSION: latest-stable

Expand Down Expand Up @@ -50,7 +48,7 @@ jobs:
name: Merge main into dev
runs-on: ubuntu-latest
needs: update-pods
if: startsWith(github.event.head_commit.message, 'release:')
if: contains(join(github.event.commits.*.message, ' '), 'release')
steps:
- name: Checkout
uses: actions/checkout@v5.0.0
Expand Down
17 changes: 1 addition & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,7 @@ React Native wrapper for Android & iOS Google Maps SDK.

## Documentation

Full installation guide and API reference:
https://pinpong.github.io/react-native-google-maps-plus

## Contributing

- [Development workflow](CONTRIBUTING.md#development-workflow)
- [Sending a pull request](CONTRIBUTING.md#sending-a-pull-request)
- [Code of conduct](CODE_OF_CONDUCT.md)

## License

MIT

---

Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
- [Installation guide and API reference](https://pinpong.github.io/react-native-google-maps-plus)

## Contributing

Expand Down
Loading