Skip to content

Show the app version on the bottom right of the home page #37

Show the app version on the bottom right of the home page

Show the app version on the bottom right of the home page #37

Workflow file for this run

name: Gh-Pages
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Flutter
uses: subosito/flutter-action@v2
- run: flutter config --enable-web
- run: flutter build web --release --wasm --base-href=/ --dart-define="NAKAMA_SERVER_KEY=${{ secrets.NAKAMA_SERVER_KEY }}"
- 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"
- run: git push origin HEAD:gh-pages --force