Update mail.csv #74
This file contains hidden or 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: Flutter CI | |
on: push | |
jobs: | |
build-release-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: 'stable' | |
- name: Install project dependencies | |
run: flutter pub get | |
- name: Enable windows build | |
run: flutter config --enable-windows-desktop | |
#- name: Build flask app | |
# run: dart run serious_python:main package assets/app/ | |
- name: Build artifacts | |
run: flutter build windows | |
- name: Archive Release | |
uses: thedoctor0/zip-release@master | |
with: | |
type: 'zip' | |
filename: BP-Sender-${{github.ref_name}}-windows.zip | |
directory: build/windows/x64/runner/Release | |
- name: Build installer | |
run: dart windows_installer_creator.dart | |
- name: Windows Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: "rel" | |
files: | | |
build/windows/x64/runner/Release/BP-Sender-${{github.ref_name}}-windows.zip | |
build/windows/Buste Paga 2.0 Installer.exe |