Skip to content

v1.0.16+97

v1.0.16+97 #9

Workflow file for this run

name: デプロイ(windows zip)
on:
workflow_dispatch:
release:
types: [published]
permissions:
contents: write
jobs:
build_for_windows:
name: Windows用ビルド
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: Flutter pub get
run: |
git config --system core.longpaths true
flutter pub get
- name: Get App Version
run: |
echo "version=$(flutter pub run cider version)" >> $env:GITHUB_ENV
- name: Build for Windows
run: |
flutter build windows --release
- name: Compile .ISS to .EXE Installer
uses: Minionguyjpro/[email protected]
with:
path: windows/innosetup.iss
options: /dMyAppVersion="${{ env.version }}"
- name: Rename .EXE Installer
run: mv miria-installer.exe miria-installer_${env:version}_x64.exe
- name: Compress files
run: |
ren build\windows\x64\runner\Release Miria
Compress-Archive -Path build\windows\x64\runner\Miria -DestinationPath miria_${env:version}_windows-x64.zip -Force
- name: Create tag and release note
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload v${env:version} miria_${env:version}_windows-x64.zip miria-installer_${env:version}_x64.exe