Skip to content

Update readme

Update readme #12

Workflow file for this run

name: Build Assets
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run prod
- run: |
git config --global user.name 'Simon Hamp'
git config --global user.email '[email protected]'
if git add dist/* ; then
git commit -m "Build resources"
git push
fi