Skip to content

build(deps): bump react-router-dom from 6.22.2 to 6.22.3 #129

build(deps): bump react-router-dom from 6.22.2 to 6.22.3

build(deps): bump react-router-dom from 6.22.2 to 6.22.3 #129

Workflow file for this run

name: Publish
on:
push:
branches:
- development
jobs:
publish:
name: Publish to GitHub Pages
runs-on: ubuntu-20.04
environment: build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
with:
cache: 'npm'
node-version: '16'
- run: npm ci
- run: npm run build
- run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npx gh-pages -u "GitHub Actions Bot <actions@github.com>" -b master -d build
env:
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}