Skip to content

Commit

Permalink
v3.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
escapace committed Mar 30, 2019
1 parent f6aeb0b commit 26627b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ action "Docker Build" {
action "Docker Push A" {
uses = "actions/docker/cli@8cdf801b322af5f369e00d85e9cf3a7122f49108"
needs = ["Docker Build", "Docker Login"]
args = "push build escapace/manage:latest"
args = "push escapace/manage:latest"
secrets = ["DOCKER_PASSWORD", "DOCKER_USERNAME"]
}

action "Docker Push B" {
uses = "actions/docker/cli@8cdf801b322af5f369e00d85e9cf3a7122f49108"
needs = ["Docker Build", "Docker Login"]
secrets = ["DOCKER_PASSWORD", "DOCKER_USERNAME"]
args = "push escapace/manage:${GITHUB_REF:11} ."
args = "push escapace/manage:${GITHUB_REF:11}"
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ RUN ./manage trust-escapace

ENTRYPOINT ["/sbin/tini", "--", "/workdir/manage"]
CMD ["help"]
LABEL version=3.2.7
LABEL version=3.2.8
2 changes: 1 addition & 1 deletion manage
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ else
exit 1
fi

MANAGE_VERSION="v3.2.7"
MANAGE_VERSION="v3.2.8"

MANAGE_IS_CI () {
# Returns 0 if the current environment
Expand Down

0 comments on commit 26627b3

Please sign in to comment.