Skip to content

chore: v1.1.1 for android fix. #9

chore: v1.1.1 for android fix.

chore: v1.1.1 for android fix. #9

name: Release for Windows
on:
workflow_dispatch:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Flutter
run: |
git submodule update --init --recursive
- run: .flutter/bin/flutter.bat create --platforms=windows .
- run: .flutter/bin/flutter.bat build windows --release
- name: Package Executable
run: 7z a -r -sse ..\..\..\..\build\app\app-release.zip *
working-directory: build\windows\x64\runner\Release
- name: Release
uses: softprops/action-gh-release@v1
with:
files: build/app/app-release.zip,
prerelease: false
tag_name: ${{ github.event.inputs.tag_name }}
token: ${{ secrets.RELEASE_TOKEN }}