Skip to content

Added new deploy token #4

Added new deploy token

Added new deploy token #4

Workflow file for this run

name: React and Node Pipeline
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build-and-deploy:
name: Build and Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Install gh-pages
run: npm install -g gh-pages
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
- name: Run tests
run: npm test
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
run: npm run deploy