Skip to content

Replace dependency @material-ui/icons with @mui/icons-material 5.0.0 #391

Replace dependency @material-ui/icons with @mui/icons-material 5.0.0

Replace dependency @material-ui/icons with @mui/icons-material 5.0.0 #391

Workflow file for this run

# build and deploy generator to github pages and to
name: Build and Deploy to GHpages
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_and_deploy:
runs-on: ubuntu-latest
environment: production
name: Build and Deploy
steps:
- uses: actions/checkout@v3
- run: npm i
- run: npm ci
- run: CI= PUBLIC_URL=${{ secrets.PUBLIC_URL }} npm run build
- name: Publish
if: github.event_name == 'push'
uses: nogsantos/[email protected]
with:
src: ./build/*
host: ${{ secrets.SSH_HOST }}
remote: ${{ secrets.SSH_DIR }}
port: ${{ secrets.SSH_PORT }}
user: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}