-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #225 from AssistantNMS/develop
🔖 2.18.0
- Loading branch information
Showing
235 changed files
with
33,208 additions
and
2,682 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Flutter Deploy - Windows | ||
|
||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: 'build-windows' | ||
cancel-in-progress: true | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- '2.*' | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: subosito/flutter-action@v1 | ||
with: | ||
channel: 'stable' # 'stable', 'beta', 'dev' or 'master' | ||
|
||
- name: Write env file | ||
env: | ||
ENV_DART: ${{ secrets.ENV_DART }} | ||
run: | | ||
$Env:ENV_DART | Out-File ./lib/env.dart | ||
- name: Build Windows release version | ||
run: flutter build windows --release | ||
|
||
- name: Building the installer | ||
shell: cmd | ||
run: | | ||
"%programfiles(x86)%\Inno Setup 6\iscc.exe" "installers\assistantNMS.iss" | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: AssistantNMS_setup | ||
path: 'installers/AssistantNMS_setup.exe' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ | |
"raw50", | ||
"raw31", | ||
"raw72", | ||
"raw73", | ||
"raw51", | ||
"raw52", | ||
"raw53", | ||
|
Oops, something went wrong.