Skip to content

updates...

updates... #7

Workflow file for this run

name: deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter build web --release --base-href /makhosandile.me/
- run: git config user.name github-actions
- run: git config user.email [email protected]
- run: git --work-tree build/web add --all
- run: git commit -m Automatic deployment by github-actions - ${{ github.sha }}"
- run: git push origin HEAD:gh-pages --force