localization updates and fixes #14
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: Github-Pages | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: beta | |
cache: true | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Build web | |
run: flutter build web --wasm --base-href /batucadapp/ | |
- name: Commit changes | |
run: | | |
git config --global user.name "github-actions" | |
git config --global user.email "[email protected]" | |
git --work-tree build/web add --all | |
git commit -m "Deploy to GitHub Pages" | |
git push origin HEAD:gh-pages --force | |
shell: bash |