Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/nmind/proceedings in…
Browse files Browse the repository at this point in the history
…to development
  • Loading branch information
ypaulsussman committed Feb 12, 2024
2 parents bb1376d + 43294b0 commit 7b9faac
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- development

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install and Build
run: |
npm install
npm run build
touch build/.nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build

0 comments on commit 7b9faac

Please sign in to comment.