Add sponsor #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |