Skip to content

trying to fix the contact form #6

trying to fix the contact form

trying to fix the contact form #6

Workflow file for this run

name: Deploy
on:
push:
branches:
- master # or your main branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo A
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: npm install
- name: Build React App
run: npm run build
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GH_PAT }}
external_repository: maxtek6/maxtek6.github.io
publish_dir: ./dist
publish_branch: master