forked from bitpoke/stack-deploy-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 730 Bytes
/
action.yml
File metadata and controls
24 lines (24 loc) · 730 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
name: 'Deploy WordPress on Stack'
description: 'Use github actions to deploy a new WordPress image on a Stack cluster.'
inputs:
image:
description: 'Docker image to replace with'
required: true
wordpress:
description: 'WordPress resource name to update'
required: true
namespace:
description: 'Namespace in which to apply the changes'
required: true
google_project:
description: 'Google project where the k8s cluster is'
required: true
google_zone:
description: 'Google zone where the k8s cluster is'
required: true
google_cluster:
description: 'Kubernetes cluster name'
required: true
runs:
using: 'docker'
image: 'docker://quay.io/presslabs/stack-deployer:latest'