Skip to content

Commit 7644c9a

Browse files
Merge pull request #83 from cityjson/develop
Release 0.8.0
2 parents 2468ae3 + 572a7c1 commit 7644c9a

22 files changed

Lines changed: 8441 additions & 6383 deletions

.browserslistrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: '18'
20+
21+
- name: Install dependencies
22+
run: npm install
23+
24+
- name: Build the project
25+
run: npm run build
26+
27+
- name: Deploy to GitHub Pages
28+
uses: peaceiris/actions-gh-pages@v4
29+
with:
30+
github_token: ${{ secrets.GITHUB_TOKEN }}
31+
publish_dir: ./dist
32+
cname: ninja.cityjson.org

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ yarn-error.log*
2222

2323
#Electron-builder output
2424
/dist_electron
25-
.cache/
25+
.cache/
26+
27+
.parcel-cache/

.parcelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["@parcel/config-default", "parcel-config-vue2"]
3+
}

babel.config.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

cityjson-vue-components

Submodule cityjson-vue-components deleted from a573333

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ git add -A
1616
git commit -m 'deploy'
1717

1818
# if you are deploying to https://<USERNAME>.github.io/<REPO>
19-
git push -f git@github.com:cityjson/ninja.git main:gh-pages
19+
git push -f git@github.com-personal:cityjson/ninja.git main:gh-pages
2020

2121
cd -

0 commit comments

Comments
 (0)