feat: always on top #34
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: Build | |
on: [push, pull_request] | |
jobs: | |
build-windows: | |
name: Build Windows | |
runs-on: windows-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: Build Flutter application | |
run: flutter build windows | |
- name: Move files | |
run: | | |
# Create a directory to hold the files | |
mkdir Release\windows\Iris | |
# Move the build output to the Iris directory | |
Move-Item -Path "build\windows\x64\runner\Release\*" -Destination "Release\windows\Iris" -Force | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Iris_win32_x64 | |
path: Release\windows |