forked from shaytan/rdgen
Merge pull request #28 from VenimK/patch-11
Update pre137-generator-windows.yml
This commit is contained in:
16
.github/workflows/pre137-generator-windows.yml
vendored
16
.github/workflows/pre137-generator-windows.yml
vendored
@@ -502,16 +502,21 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
if [ ! -z "${{ secrets.SIGN_BASE_URL }}" ] && [ ! -z "${{ secrets.SIGN_API_KEY }}" ]; then
|
||||||
curl -X POST -F "file=@./rustdesk/unsigned_files.zip" \
|
curl -X POST -F "file=@./rustdesk/unsigned_files.zip" \
|
||||||
-H "X-API-KEY: ${{ secrets.SIGN_API_KEY }}" \
|
-H "X-API-KEY: ${{ secrets.SIGN_API_KEY }}" \
|
||||||
-m 900 \
|
-m 900 \
|
||||||
"${{ secrets.SIGN_URL }}/sign/" -o ./rustdesk/signed_files.zip
|
"${{ secrets.SIGN_BASE_URL }}/sign/" -o ./rustdesk/signed_files.zip
|
||||||
|
else
|
||||||
|
echo "Signing skipped - signing URL or API key not configured"
|
||||||
|
cp ./rustdesk/unsigned_files.zip ./rustdesk/signed_files.zip
|
||||||
|
fi
|
||||||
|
|
||||||
- name: unzip dlls
|
- name: unzip dlls
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
Expand-Archive -Path ./rustdesk/signed_files.zip -DestinationPath ./rustdek/ -Force
|
Expand-Archive -Path ./rustdesk/signed_files.zip -DestinationPath ./rustdes k/ -Force
|
||||||
|
|
||||||
|
|
||||||
- name: Create custom.txt file
|
- name: Create custom.txt file
|
||||||
@@ -574,10 +579,15 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
if [ ! -z "${{ secrets.SIGN_BASE_URL }}" ] && [ ! -z "${{ secrets.SIGN_API_KEY }}" ]; then
|
||||||
curl -X POST -F "file=@./SignOutput/unsigned_files.zip" \
|
curl -X POST -F "file=@./SignOutput/unsigned_files.zip" \
|
||||||
-H "X-API-KEY: ${{ secrets.SIGN_API_KEY }}" \
|
-H "X-API-KEY: ${{ secrets.SIGN_API_KEY }}" \
|
||||||
-m 900 \
|
-m 900 \
|
||||||
"${{ secrets.SIGN_URL }}/sign/" -o ./SignOutput/signed_files.zip
|
"${{ secrets.SIGN_BASE_URL }}/sign/" -o ./SignOutput/signed_files.zip
|
||||||
|
else
|
||||||
|
echo "Signing skipped - signing URL or API key not configured"
|
||||||
|
cp ./SignOutput/unsigned_files.zip ./SignOutput/signed_files.zip
|
||||||
|
fi
|
||||||
|
|
||||||
- name: unzip exe and msi
|
- name: unzip exe and msi
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|||||||
Reference in New Issue
Block a user