Skip to content

Commit

Permalink
Merge branch 'main' of jaanli.github:jaanli/new-york-real-estate
Browse files Browse the repository at this point in the history
  • Loading branch information
jaanli committed Apr 1, 2024
2 parents b92f555 + 29e3944 commit 6b9cd31
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build App
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch: {}

jobs:
build_app:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: 21.x
- run: npm install && npm run build
- uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
force_orphan: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# New York Real Estate
# New York Real Estate

This is an [Observable Framework](https://observablehq.com/framework) project. To start the local preview server, run:

Expand Down

0 comments on commit 6b9cd31

Please sign in to comment.