Skip to content

Commit

Permalink
Update flutter-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmarschall committed Aug 26, 2024
1 parent 2a3274e commit d963038
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,6 @@ jobs:
pip3 install requests argparse
BASE_URL=${{ secrets.SIGN_BASE_URL }} SECRET_KEY=${{ secrets.SIGN_SECRET_KEY }} python3 res/job.py sign_files ./rustdesk/
- name: Install zip (if not installed)
run: sudo apt-get install -y zip

- name: Build self-extracted executable
shell: bash
if: env.UPLOAD_ARTIFACT == 'true'
Expand All @@ -196,7 +193,7 @@ jobs:
python3 ./generate.py -f ../../rustdesk/ -o . -e ../../rustdesk/rustdesk.exe
popd
mv ./target/release/rustdesk-portable-packer.exe ./rustdesk-hickelsoft-win64.exe
zip -r rustdesk-hickelsoft-win64.zip rustdesk/
powershell Compress-Archive -Path rustdesk\* -DestinationPath rustdesk-hickelsoft-win64.zip
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
Expand Down Expand Up @@ -343,9 +340,6 @@ jobs:
pip3 install requests argparse
BASE_URL=${{ secrets.SIGN_BASE_URL }} SECRET_KEY=${{ secrets.SIGN_SECRET_KEY }} python3 res/job.py sign_files ./Release/
- name: Install zip (if not installed)
run: sudo apt-get install -y zip

- name: Build self-extracted executable
shell: bash
run: |
Expand All @@ -355,7 +349,7 @@ jobs:
python3 ./generate.py -f ../../Release/ -o . -e ../../Release/rustdesk.exe
popd
mv ./target/release/rustdesk-portable-packer.exe ./rustdesk-hickelsoft-win32.exe
zip -r rustdesk-hickelsoft-win64.zip rustdesk/
powershell Compress-Archive -Path rustdesk\* -DestinationPath rustdesk-hickelsoft-win32.zip
- name: Sign rustdesk self-extracted file
if: env.UPLOAD_ARTIFACT == 'true' && env.SIGN_BASE_URL != ''
Expand Down

0 comments on commit d963038

Please sign in to comment.