Skip to content

Commit

Permalink
Github Action for deploying to Github Pages (#11)
Browse files Browse the repository at this point in the history
* Add deploy script

* Add github action to deploy to GH Pages
  • Loading branch information
belen-albeza authored Jul 18, 2024
1 parent 1570e25 commit 18ab7a9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy
# configure manual trigger
on:
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Copy files to dist folder
run: |
./deploy.sh
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist # The folder the action should deploy.

0 comments on commit 18ab7a9

Please sign in to comment.