generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
84 lines (69 loc) · 1.96 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: 'Salad Container Engine Action'
description:
'Automatically deploy updated container images to your Salad Account.'
author: 'SaladTechnologies'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'cloud-snow'
color: 'green'
# Define your inputs here.
inputs:
salad_organization:
description: 'Your Salad organization name.'
required: true
salad_project:
description: 'Your Salad project name.'
required: true
salad_container_group:
description: 'Your Salad container group name.'
required: true
salad_api_key:
description: 'Your Salad API key'
required: true
image_name:
description: 'The name of the container, including the registry and the tag'
required: true
# # ghcr
# github_token:
# description:
# 'Personal Access Token (PAT) used to authenticate with the GitHub
# Container Registry.'
# required: false
# # basic auth
# basic_username:
# description:
# 'The username for basic auth - to be used in conjunction with
# `basic_password`'
# required: false
# basic_password:
# description:
# 'The password for basic auth - to be used in conjunction with
# `basic_username`'
# required: false
# # gcp gcr
# service_key:
# description:
# 'The username for basic auth - to be used in conjunction with
# `basic_password`'
# required: false
# ecr
aws_access_key_id:
description:
'AWS Access Key ID - to be used in conjunction with
`aws_secret_access_key`'
required: false
aws_secret_access_key:
description:
'AWS Secret Access Key - to be used in conjunction with
`aws_access_key_id`'
required: false
# # docker hub
# dockerhub_username:
# description: 'Docker Hub Username'
# required: false
# dockerhub_password:
# description: 'Docker Hub Personal Access Token'
# required: false
runs:
using: node20
main: dist/index.js