removed nightly boolean env
Some checks are pending
Build the flutter version of the RustDesk / ${{ matrix.job.target }} (${{ matrix.job.os }}) (map[arch:x86_64 os:windows-2019 target:x86_64-pc-windows-msvc]) (push) Has started running

This commit is contained in:
2023-09-24 05:35:41 -05:00
parent c1d8b483c8
commit 561612655c

View File

@@ -1,12 +1,5 @@
name: Build the flutter version of the RustDesk
on: [push]
inputs:
upload-artifact:
type: boolean
default: true
upload-tag:
type: string
default: "nightly"
env:
CARGO_NDK_VERSION: "3.1.2"
@@ -112,7 +105,6 @@ jobs:
- name: Sign rustdesk files
uses: GermanBluefox/code-sign-action@v7
if: env.UPLOAD_ARTIFACT == 'true'
with:
certificate: '${{ secrets.WINDOWS_PFX_BASE64 }}'
password: '${{ secrets.WINDOWS_PFX_PASSWORD }}'
@@ -123,7 +115,6 @@ jobs:
- name: Build self-extracted executable
shell: bash
if: env.UPLOAD_ARTIFACT == 'true'
run: |
pushd ./libs/portable
python3 ./generate.py -f ../../flutter/build/windows/runner/Release/ -o . -e ../../flutter/build/windows/runner/Release/rustdesk.exe
@@ -133,7 +124,6 @@ jobs:
- name: Sign rustdesk self-extracted file
uses: GermanBluefox/code-sign-action@v7
if: env.UPLOAD_ARTIFACT == 'true'
with:
certificate: '${{ secrets.WINDOWS_PFX_BASE64 }}'
password: '${{ secrets.WINDOWS_PFX_PASSWORD }}'
@@ -144,7 +134,6 @@ jobs:
- name: Publish Release
uses: softprops/action-gh-release@v1
if: env.UPLOAD_ARTIFACT == 'true'
with:
prerelease: true
tag_name: ${{ env.TAG_NAME }}