All Projects → digitalocean → Action Doctl

digitalocean / Action Doctl

Licence: mit
GitHub Actions for DigitalOcean - doctl

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Action Doctl

Godo
DigitalOcean Go API client
Stars: ✭ 1,097 (+400.91%)
Mutual labels:  digitalocean, hacktoberfest
Cluster.dev
Kubernetes-based Dev Environments with GitOps
Stars: ✭ 122 (-44.29%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest2020
Make your first Pull Request and earn a free tee from GitHub!
Stars: ✭ 1,141 (+421%)
Mutual labels:  digitalocean, hacktoberfest
Tfsec
Security scanner for your Terraform code
Stars: ✭ 3,622 (+1553.88%)
Mutual labels:  hacktoberfest, digitalocean
Nginxconfig.io
⚙️ NGINX config generator on steroids 💉
Stars: ✭ 14,983 (+6741.55%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest Simple Practice Programmes
A beginner-friendly open source repository to create your pull request.
Stars: ✭ 42 (-80.82%)
Mutual labels:  digitalocean, hacktoberfest
Competitive Programming
Hello Programmers 💻 , A one-stop Destination✏️✏️ for all your Competitive Programming Resources.📗📕 Refer CONTRIBUTING.md for contributions
Stars: ✭ 113 (-48.4%)
Mutual labels:  digitalocean, hacktoberfest
Droplet kit
DropletKit is the official DigitalOcean API client for Ruby.
Stars: ✭ 482 (+120.09%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest2018
A repository for HacktoberFest 2018.
Stars: ✭ 139 (-36.53%)
Mutual labels:  digitalocean, hacktoberfest
Marketplace Partners
Image validation, automation, and other tools for DigitalOcean Marketplace partners and Custom Image users
Stars: ✭ 139 (-36.53%)
Mutual labels:  digitalocean, hacktoberfest
Innovative Hacktober
Make a pull request. Let's hack the ocktober in an innovative way.
Stars: ✭ 34 (-84.47%)
Mutual labels:  digitalocean, hacktoberfest
Programmers Community
This repository contains various solution of a problem in Ruby, C, C++, Python and Java.
Stars: ✭ 189 (-13.7%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest 2020
Welcome to Open-source! Simply add your details to contributors | Repo for Hacktoberfest 2020 ✅
Stars: ✭ 621 (+183.56%)
Mutual labels:  digitalocean, hacktoberfest
Dns Tool
A set of browser-based DNS tools for DigitalOcean Community.
Stars: ✭ 50 (-77.17%)
Mutual labels:  digitalocean, hacktoberfest
Do Agent
Collects system metrics from DigitalOcean Droplets
Stars: ✭ 552 (+152.05%)
Mutual labels:  digitalocean, hacktoberfest
Digitalocean Js
JavaScript library for the DigitalOcean API
Stars: ✭ 90 (-58.9%)
Mutual labels:  digitalocean, hacktoberfest
Gitstart
Make a Pull Request
Stars: ✭ 415 (+89.5%)
Mutual labels:  digitalocean, hacktoberfest
Digitalocean Cloud Controller Manager
Kubernetes cloud-controller-manager for DigitalOcean (beta)
Stars: ✭ 418 (+90.87%)
Mutual labels:  digitalocean, hacktoberfest
Awesome Travel
Do you want to build a travel app?
Stars: ✭ 133 (-39.27%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest 2k18 Katas
Game has ended :: Little challenges to up your Hacktoberfest game!
Stars: ✭ 160 (-26.94%)
Mutual labels:  digitalocean, hacktoberfest

GitHub Actions for DigitalOcean

This action enables you to interact with DigitalOcean services by installing the doctl command-line client.

Usage

To install the latest version of doctl and use it in GitHub Actions workflows, add the following step:

    - name: Install doctl
      uses: digitalocean/[email protected]
      with:
        token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

doctl will now be available in the virtual environment and can be used directly in following steps. As an example, one common use case is retrieving the credentials for a Kubernetes cluster hosted on DigitalOcean for use in a deployment workflow:

    - name: Save DigitalOcean kubeconfig
      run: doctl kubernetes cluster kubeconfig save testing-cluster

See this repository for a full end-to-end example that also demonstrates building a Docker image, pushing it to a private DigitalOcean container registry, and using kubectl to deploy it to the Kubernetes cluster on DigitalOcean.

Arguments

  • token – (Required) A DigitalOcean personal access token (more info).
  • version – (Optional) The version of doctl to install. If excluded, the latest release will be used.

Contributing

To install the needed dependencies, run npm install. The resulting node_modules/ directory is not checked in to Git.

Before submitting a pull request, run npm run package to package the code using ncc. Packaging assembles the code including dependencies into one file in the dist/ directory that is checked in to Git.

Pull requests should be made against the v2 branch.

License

This GitHub Action and associated scripts and documentation in this project are released under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].