Skip to content

Commit

Permalink
Merge pull request #2 from daniel-jakob/main
Browse files Browse the repository at this point in the history
Create deploy-gh-pages.yml
  • Loading branch information
elgranjero authored Dec 28, 2023
2 parents 41b3498 + fac89e1 commit 288be93
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 288be93

Please sign in to comment.