Skip to content

chore(deps): update react monorepo #262

chore(deps): update react monorepo

chore(deps): update react monorepo #262

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn build
- uses: actions/upload-artifact@v3
with:
name: dist-files
path: public/
deploy:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: dist-files
path: public/
- uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
keep_history: true
build_dir: public/
fqdn: jiripudil.cz
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}