-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM buildpack-deps:stretch | ||
|
||
LABEL "repository"="https://github.com/presslabs/stack-deploy-github-action" | ||
LABEL "maintainer"="Presslabs <[email protected]>" | ||
LABEL "repository"="https://github.com/bitpoke/stack-deploy-github-action" | ||
LABEL "maintainer"="Bitpoke <[email protected]>" | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
name: 'Deploy WordPress on Stack' | ||
description: 'Use github actions to deploy a new WordPress image on a Stack cluster.' | ||
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' | ||
description: "Docker image to replace with" | ||
required: true | ||
wordpress: | ||
description: 'WordPress resource name to update' | ||
description: "WordPress resource name to update" | ||
required: true | ||
namespace: | ||
description: 'Namespace in which to apply the changes' | ||
description: "Namespace in which to apply the changes" | ||
required: true | ||
google_project: | ||
description: 'Google project where the k8s cluster is' | ||
description: "Google project where the k8s cluster is" | ||
required: true | ||
google_zone: | ||
description: 'Google zone where the k8s cluster is' | ||
description: "Google zone where the k8s cluster is" | ||
required: true | ||
google_cluster: | ||
description: 'Kubernetes cluster name' | ||
description: "Kubernetes cluster name" | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'docker://quay.io/presslabs/stack-deployer' | ||
using: "docker" | ||
image: "docker://docker.io/bitpoke/stack-deployer-github-action" |