Skip to content

Commit

Permalink
feat: Add deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
godetremy committed Dec 22, 2024
1 parent 7b6def0 commit 205ee86
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy to Support

on:
push:
branches: [ main ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install and Build
run: |
npm install
npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: public
folder: public

0 comments on commit 205ee86

Please sign in to comment.