From 6c802421db6fe5665c50b9550ceac134d0d56e7e Mon Sep 17 00:00:00 2001 From: pinpong Date: Wed, 3 Dec 2025 16:16:35 +0700 Subject: [PATCH 1/3] ci: update docs deployment --- .../workflows/{deploy_docs.yaml.yml => deploy_docs.yaml} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) rename .github/workflows/{deploy_docs.yaml.yml => deploy_docs.yaml} (83%) diff --git a/.github/workflows/deploy_docs.yaml.yml b/.github/workflows/deploy_docs.yaml similarity index 83% rename from .github/workflows/deploy_docs.yaml.yml rename to .github/workflows/deploy_docs.yaml index f35a2f7..5223bd6 100644 --- a/.github/workflows/deploy_docs.yaml.yml +++ b/.github/workflows/deploy_docs.yaml @@ -1,8 +1,8 @@ name: Deploy docs to GH pages on: - release: - types: [published] + push: + branches: [main] workflow_dispatch: permissions: @@ -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 }} @@ -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 From adb069cb9168793bafd054994571f88fe79740b7 Mon Sep 17 00:00:00 2001 From: pinpong Date: Wed, 3 Dec 2025 16:52:59 +0700 Subject: [PATCH 2/3] ci: main into dev --- .github/workflows/prepare_dev_for_next_release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/prepare_dev_for_next_release.yml b/.github/workflows/prepare_dev_for_next_release.yml index afbc832..cd4e8b5 100644 --- a/.github/workflows/prepare_dev_for_next_release.yml +++ b/.github/workflows/prepare_dev_for_next_release.yml @@ -3,8 +3,6 @@ name: Prepare dev branch for next release on: push: branches: [main] - paths: - - 'package.json' permissions: contents: write @@ -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 @@ -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 From dc1f75f293e8e7bebde13b2c6d6a5bb1e5cbba45 Mon Sep 17 00:00:00 2001 From: pinpong Date: Wed, 3 Dec 2025 16:56:59 +0700 Subject: [PATCH 3/3] chore: update README.md --- README.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/README.md b/README.md index d480cca..d986293 100644 --- a/README.md +++ b/README.md @@ -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