Skip to content

Commit

Permalink
🧹 chore(app): add gh-pages deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdesque committed Mar 29, 2024
1 parent 8205a96 commit 5b08944
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Deploy

on:
push:
branches:
- main

permissions:
contents: write

jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest

steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: gh-pages
FOLDER: .
CLEAN: true

0 comments on commit 5b08944

Please sign in to comment.