feat(map): allow custom iconView on GMSMarker subclasses (#506) #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
name: Release Please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
config-file: release-please-config.json | |
manifest-file: .release-please-manifest.json | |
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }} | |
default-branch: main | |
- name: Echo release outputs | |
if: ${{ steps.release.outputs }} | |
run: echo '${{ toJson(steps.release) }}' | |
continue-on-error: true | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Call the Publish workflow to publish to CocoaPods when a release is cut. | |
# Note the "if" statement makes sure that publishing | |
# only happens when a release is cut. | |
- if: ${{ steps.release.outputs.release_created }} | |
name: Start publish | |
uses: ./.github/workflows/publish.yml |