forked from JMPJNS/docker-remote-deploy-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (37 loc) · 1.07 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
name: docker-swarm-deploy
author: ALPIN11 <[email protected]>
description: A GitHub Action that enables you to publish your app as a Docker stack to a remote Docker swarm.
inputs:
remote_host:
description: Docker host to connect to
required: true
ssh_public_key:
description: SSH public key of the server
required: false
ssh_private_key:
description: SSH private key to use to connect
required: false
docker_registry:
description: Log into a container registry (ghrc.io, dockerhub...)
required: false
docker_username:
description: Username on the container registry
required: false
docker_password:
description: Password on the container registry
required: false
env:
description: set environment variables to pass to the docker command
required: false
run_number:
description: github run number passed to the environment
required: false
args:
description: build arguments for the stack deploy command
required: true
runs:
using: docker
image: Dockerfile
branding:
icon: droplet
color: blue