Skip to content

Merge remote-tracking branch 'origin/main' #7

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #7

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧 # This project is built using npm and outputs the result to the 'resources/pubilc' folder.
run: |
npm ci
npm run release
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: resources/public # The folder the action should deploy.