Skip to content

Create setup-guide.md #41

Create setup-guide.md

Create setup-guide.md #41

Workflow file for this run

name: Deployments
on:
push:
branches:
- main
workflow_dispatch: # Allow manual triggering of the workflow
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Dependencies
run: npm install
- name: Build Application
run: npm run build
- name: Deploy to Production
env:
DEPLOY_API_KEY: ${{ secrets.DEPLOY_API_KEY }}
run: |
echo "Deploying application..."
./deploy.sh production