-
-
Notifications
You must be signed in to change notification settings - Fork 846
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update maps-docs repo when main is updated
- Loading branch information
Showing
2 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Update docs to maps-docs repo | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
update_docs: | ||
name: Update docs on maps-docs repo | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: maps | ||
steps: | ||
- name: Install ImageMagick | ||
run: sudo apt-get install -y imagemagick | ||
working-directory: / | ||
- name: test convert | ||
run: convert -version | ||
working-directory: / | ||
- name: Checkout maps repo | ||
uses: actions/checkout@v4 | ||
with: | ||
path: maps | ||
- name: Checkout maps-docs repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: rnmapbox/maps-docs | ||
ssh-key: ${{ secrets.MAPS_DOCS_DEPLOY_KEY }} | ||
path: maps-docs | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
- uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: latest | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Generate component docs into maps-docs repo | ||
run: node scripts/doc-generate.mjs | ||
- name: Generate example docs into maps-docs repo | ||
run: bun scripts/example-docs.ts | ||
- name: Add all changed files to git and push to origin main | ||
run: | | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git add . | ||
git commit -m "Update docs from maps rnmapbox/maps:${GITHUB_SHA::7}" | ||
git push origin main | ||
working-directory: maps-docs | ||
env: | ||
GITHUB_SHA: ${{ github.sha }} | ||
|
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