Skip to content

Bump version to 0.0.7 #49

Bump version to 0.0.7

Bump version to 0.0.7 #49

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