forked from Jumbo810/Upload_Github_Artifacts_TO_GDrive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
35 lines (35 loc) · 1.06 KB
/
action.yml
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
name: 'Upload Github-Actions Artifacts TO Google Drive'
description: 'Github Action To Upload Github-Actions -> Artifacts -> Google Drive Using A Google Drive Api!'
inputs:
credentials:
description: 'Google service account credentials'
required: true
parent_folder_id:
description: 'Google Drive folder ID to upload the file to'
required: true
target:
description: 'Local path to the file to upload'
required: true
owner:
description: 'Optional user account email (Require domain-wide authority delegation)'
required: false
default: null
name:
description: 'Optional name for the target file'
required: false
default: null
child_folder:
description: 'Optional sub-folder to upload the file to (Will be created if non-existent)'
required: false
default: null
override:
description: 'Optional, if set true, delete files with the same name before uploading'
required: false
default: false
type: boolean
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: upload-cloud
color: green