Skip to content

Commit

Permalink
Merge pull request #83 from cityjson/develop
Browse files Browse the repository at this point in the history
Release 0.8.0
  • Loading branch information
liberostelios authored Jun 17, 2024
2 parents 2468ae3 + 572a7c1 commit 7644c9a
Show file tree
Hide file tree
Showing 22 changed files with 8,441 additions and 6,383 deletions.
2 changes: 0 additions & 2 deletions .browserslistrc

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install dependencies
run: npm install

- name: Build the project
run: npm run build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: ninja.cityjson.org
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ yarn-error.log*

#Electron-builder output
/dist_electron
.cache/
.cache/

.parcel-cache/
3 changes: 3 additions & 0 deletions .parcelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@parcel/config-default", "parcel-config-vue2"]
}
5 changes: 0 additions & 5 deletions babel.config.js

This file was deleted.

1 change: 0 additions & 1 deletion cityjson-vue-components
Submodule cityjson-vue-components deleted from a57333
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ git add -A
git commit -m 'deploy'

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

cd -
Loading

0 comments on commit 7644c9a

Please sign in to comment.