mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-21 04:01:27 +00:00
88 lines
2.6 KiB
YAML
88 lines
2.6 KiB
YAML
name: AntiVirus Whitelisting
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
url:
|
|
description: "Url to the file to upload"
|
|
required: true
|
|
type: string
|
|
workflow_dispatch:
|
|
inputs:
|
|
url:
|
|
description: "Url to the file to upload"
|
|
required: true
|
|
type: string
|
|
avast:
|
|
description: "Upload to Avast"
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
kaspersky:
|
|
description: "Upload to Kaspersky"
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
|
|
jobs:
|
|
download-file:
|
|
name: Downloads the file into the VM
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
fileName: ${{ steps.extractName.outputs.fileName}}
|
|
steps:
|
|
- name: Extract file name
|
|
id: extractName
|
|
run: |
|
|
url="${{ inputs.url }}"
|
|
echo "fileName=${url##*/}" >> $GITHUB_OUTPUT
|
|
- name: Download file
|
|
run: curl --remote-name ${{ inputs.url }} -L -o ${{steps.extractName.outputs.fileName}}
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ steps.extractName.outputs.fileName }}
|
|
path: ${{ steps.extractName.outputs.fileName }}
|
|
if-no-files-found: error
|
|
allowlist-kaspersky:
|
|
name: Anti Virus Allowlisting Kaspersky
|
|
runs-on: ubuntu-latest
|
|
needs: download-file
|
|
if: github.event_name == 'workflow_call' || inputs.kaspersky
|
|
steps:
|
|
- name: Download artifact
|
|
uses: actions/download-artifact@v5
|
|
with:
|
|
name: ${{ needs.download-file.outputs.fileName }}
|
|
path: upload
|
|
- name: Upload to Kaspersky
|
|
uses: SamKirkland/FTP-Deploy-Action@v4.3.6
|
|
with:
|
|
protocol: ftps
|
|
server: allowlist.kaspersky-labs.com
|
|
port: 990
|
|
username: ${{ secrets.ALLOWLIST_KASPERSKY_USERNAME }}
|
|
password: ${{ secrets.ALLOWLIST_KASPERSKY_PASSWORD }}
|
|
local-dir: ./upload/
|
|
allowlist-avast:
|
|
name: Anti Virus Allowlisting Avast
|
|
runs-on: ubuntu-latest
|
|
needs: download-file
|
|
if: github.event_name == 'workflow_call' || inputs.avast
|
|
steps:
|
|
- name: Download artifact
|
|
uses: actions/download-artifact@v5
|
|
with:
|
|
name: ${{ needs.download-file.outputs.fileName }}
|
|
path: upload
|
|
- name: Upload to Avast
|
|
uses: wlixcc/SFTP-Deploy-Action@v1.2.6
|
|
with:
|
|
server: whitelisting.avast.com
|
|
port: 22
|
|
username: ${{ secrets.ALLOWLIST_AVAST_USERNAME }}
|
|
password: ${{ secrets.ALLOWLIST_AVAST_PASSWORD }}
|
|
ssh_private_key: ''
|
|
sftp_only: true
|
|
local_path: './upload/*'
|
|
remote_path: '/data' |