Skip to content

Commit f40af1c

Browse files
committed
Resolved yarn.lock conflict
Signed-off-by: Saif Ul Islam <[email protected]>
2 parents 3149ebf + 4f9ea2d commit f40af1c

File tree

12 files changed

+1560
-552
lines changed

12 files changed

+1560
-552
lines changed

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: documentation
22

33
on:
44
pull_request:
5-
branches: [gh-pages]
5+
branches: [main]
66
push:
7-
branches: [gh-pages]
7+
branches: [main]
88

99
jobs:
1010
checks:

.github/workflows/main-docs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on: [push]
2+
3+
jobs:
4+
build_docs_job:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
python-version: [3.6]
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Dependencies
13+
run: |
14+
sudo apt-get install -y yarn
15+
id: build
16+
- name: Build the Website
17+
run: |
18+
cd docs
19+
yarn
20+
npm run build
21+
- name: Deploy
22+
uses: JamesIves/github-pages-deploy-action@releases/v3
23+
with:
24+
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
BRANCH: gh-pages # The branch the action should deploy to.
26+
FOLDER: docs/build # The folder the action should deploy.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Mapillary Python SDK
22

3+
![Mapillary Python SDK Logo](./assets/img/logo/PNG/MapillaryPythonSDK-Logo.png)
4+
35
## Internal Resources
46

57
## Relevant Links

assets/img/logo/MapillaryPythonSDK-Logo.ai

Lines changed: 977 additions & 0 deletions
Large diffs are not rendered by default.
38.3 KB
Loading
138 KB
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
120 Bytes
Binary file not shown.

docs/docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ module.exports = {
1212
title: 'Mapillary Python SDK',
1313
tagline: 'A Python 3 library built on the Mapillary API v4 to facilitate retrieving and working with Mapillary data',
1414
url: 'https://mapillary.github.io',
15-
baseUrl: '/',
16-
onBrokenLinks: 'throw',
15+
baseUrl: '/mapillary-python-sdk/',
16+
onBrokenLinks: 'warn',
1717
onBrokenMarkdownLinks: 'warn',
1818
favicon: 'img/favicon.ico',
1919
organizationName: 'mapillary', // Usually your GitHub org/user name.

0 commit comments

Comments
 (0)