Skip to content

Commit

Permalink
Merge pull request #5 from digitalocean/marketplace-move
Browse files Browse the repository at this point in the history
Move doctl Action to root for marketplace listing.
  • Loading branch information
andrewsomething authored Apr 10, 2019
2 parents 5592a05 + 9ac08d8 commit 6a7d15b
Show file tree
Hide file tree
Showing 4 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 @@ -5,10 +5,10 @@ workflow "Test and Lint" {

action "Lint shell scripts" {
uses = "actions/bin/shellcheck@master"
args = "*/*.sh"
args = "*.sh"
}

action "Test build doctl" {
uses = "actions/docker/cli@master"
args = "build $GITHUB_WORKSPACE/doctl"
args = "build $GITHUB_WORKSPACE"
}
2 changes: 1 addition & 1 deletion doctl/Dockerfile → Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.5

LABEL "name"="doctl"
LABEL "version"="1.0.0"
LABEL "version"="1.1.0"
LABEL "maintainer"="Andrew Starr-Bochicchio <asb@digitalocean.com>"
LABEL "repository"="https://github.com/digitalocean/actions"
LABEL "homepage"="https://github.com/digitalocean/actions"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ As an example, one common use case is retrieving the credentials for a Kubernete
```hcl
action "Save DigitalOcean kubeconfig" {
needs = ["Push image to Docker Hub"]
uses = "digitalocean/actions/doctl@master"
uses = "digitalocean/action-doctl@master"
secrets = ["DIGITALOCEAN_ACCESS_TOKEN"]
env = {
CLUSTER_NAME = "example"
Expand Down
File renamed without changes.

0 comments on commit 6a7d15b

Please sign in to comment.