Skip to content

Commit

Permalink
Create deploy-gh-pages.yml
Browse files Browse the repository at this point in the history
Deploys the docs/index.html via github-pages
  • Loading branch information
daniel-jakob authored Dec 27, 2023
1 parent 41b3498 commit fac89e1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and Deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs # The folder the action should deploy.

0 comments on commit fac89e1

Please sign in to comment.