Skip to content

chore: replace page three content to before event #32

chore: replace page three content to before event

chore: replace page three content to before event #32

Workflow file for this run

name: GH Pages
on:
push:
branches:
- main
paths:
- package.json
- package-lock.json
- .github/workflows/gh-pages.yml
- vite.config.ts
- tsconfig.json
- tailwind.config.cjs
- index.html
- src/**
- public/**
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
lfs: true
- name: Install and Build 🔧
env:
PUBLIC_PATH: ./
run: |
npm install
echo "VITE_GH_PAGES=TRUE" > .env
echo "https://mz-event-screen.stg.finervision.com" >> .env
git lfs pull
npm run build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: build
clean: true