|
@@ -279,4 +279,46 @@ jobs:
|
|
|
token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
|
|
|
files: |
|
|
|
Cryptomator-*.exe
|
|
|
- Cryptomator-*.asc
|
|
|
+ Cryptomator-*.asc
|
|
|
+
|
|
|
+ allowlist:
|
|
|
+ name: Anti Virus Allowlisting
|
|
|
+ # if: startsWith(github.ref, 'refs/tags/')
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ needs: [build-msi, build-exe]
|
|
|
+ steps:
|
|
|
+ - name: Download .msi
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
+ with:
|
|
|
+ name: msi
|
|
|
+ path: msi
|
|
|
+ - name: Download .exe
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
+ with:
|
|
|
+ name: exe
|
|
|
+ path: exe
|
|
|
+ - name: Collect files
|
|
|
+ run: |
|
|
|
+ mkdir files
|
|
|
+ cp msi/*.msi files
|
|
|
+ cp exe/*.exe files
|
|
|
+ - name: Upload to Kaspersky
|
|
|
+ uses: SamKirkland/FTP-Deploy-Action@4.3.0
|
|
|
+ with:
|
|
|
+ protocol: ftps
|
|
|
+ server: allowlist.kaspersky-labs.com
|
|
|
+ port: 990
|
|
|
+ username: ${{ secrets.ALLOWLIST_KASPERSKY_USERNAME }}
|
|
|
+ password: ${{ secrets.ALLOWLIST_KASPERSKY_PASSWORD }}
|
|
|
+ local-dir: files/
|
|
|
+ dry-run: true
|
|
|
+ - name: Upload to Avast
|
|
|
+ uses: SamKirkland/FTP-Deploy-Action@4.3.0
|
|
|
+ with:
|
|
|
+ protocol: ftp
|
|
|
+ server: whitelisting.avast.com
|
|
|
+ port: 21
|
|
|
+ username: ${{ secrets.ALLOWLIST_AVAST_USERNAME }}
|
|
|
+ password: ${{ secrets.ALLOWLIST_AVAST_PASSWORD }}
|
|
|
+ local-dir: files/
|
|
|
+ dry-run: true
|