Skip to content

Commit

Permalink
Publish website?
Browse files Browse the repository at this point in the history
  • Loading branch information
bovee committed May 13, 2024
1 parent eac6dc2 commit bfb93b2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: 'Publish website'

on:
push:
branches: [ main ]

jobs:
build-and-publish:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3

- name: Install dependencies
uses: bahmutov/npm-install@v1

- name: Build project
run: npm run build

- name: Publish to Github pages
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
branch: gh-pages
folder: dist
single-commit: true

0 comments on commit bfb93b2

Please sign in to comment.