-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (33 loc) · 806 Bytes
/
action.yml
File metadata and controls
35 lines (33 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# action.yml
name: minio-upload
description: "Action that lets you upload objects from a MinIO server"
inputs:
url:
description: "URL of the MinIO server"
required: true
access-key:
description: "Access Key for the MinIO server"
required: true
secret-key:
description: "Secret Key for the MinIO server"
required: true
local-path:
description: 'Path of the local object'
required: true
default: './'
remote-path:
description: 'Path to remote object'
required: true
policy:
description: 'Policy'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.url }}
- ${{ inputs.access-key }}
- ${{ inputs.secret-key }}
- ${{ inputs.local-path }}
- ${{ inputs.remote-path }}
- ${{ inputs.policy }}