Skip to content

Tarnyko/actions-clever-cloud

 
 

Repository files navigation

Deploy to Clever Cloud

Marketplace MIT License CI/CD Dependabot Status Average issue resolution time Number of open issues

GitHub action to deploy your application to Clever Cloud.

Usage

In your workflow file:

steps:
  # This action requires an unshallow working copy,
  # so the following prerequisites are necessary:
  - uses: actions/checkout@v2
  - run: git fetch --prune --unshallow

  # Deploy your application
  - uses: 47ng/actions-clever-cloud@v1
    env:
      CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }}
      CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}

This minimal example assumes you have only one application for this repository that was linked with clever link, and the .clever.json file is versioned at the root of the repository. If that's not the case, read on:

Specifying the application to deploy

Clever Cloud uses a .clever.json file at the root of your repository to link to application IDs.

If you have committed the .clever.json file, you only need to specify the alias of the application to deploy:

- uses: 47ng/actions-clever-cloud@v1
  with:
    alias: my-app-alias
  env:
    CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }}
    CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}

If you don't have this .clever.json file or you want to explicly deploy to another application, you can pass its ID:

- uses: 47ng/actions-clever-cloud@v1
  with:
    appID: app_facade42-cafe-babe-cafe-deadf00dbaad
  env:
    CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }}
    CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}

Application IDs can be found in the Clever Cloud console, at the top-right corner of any page for a given app, or in the Information tab. They look like app_{uuidv4}.

Authentication

You will need to pass a token and a secret for authentication, via the CLEVER_TOKEN and CLEVER_SECRET environment variables.

At the time of writing, the only way to obtain those credentials is to re-use the ones generated for a local CLI. For that:

  1. Install the clever-tools CLI locally
  2. Login on the CLI with clever login and follow the Web login process
  3. Extract the credentials:
$ cat ~/.config/clever-cloud
{"token":"[token]","secret":"[secret]"}
  1. In your repository settings, add the following secrets:
  • CLEVER_TOKEN: the token value in the credentials
  • CLEVER_SECRET: the secret value in the credentials

Extra Environment Variables

Note: this feature is not yet released, but can be previewed from the master branch.

You can set extra environment variables on the deployed application by prefixing them with CLEVER_ENV_ in the input arguments:

- uses: 47ng/actions-clever-cloud@master
  with:
    CLEVER_ENV_FOO: bar         # sets FOO=bar on the application
    CLEVER_ENV_EGG: spam        # sets EGG=spam on the application
    extraEnvSafelist: FOO,EGG   # Only allow FOO and EGG to be set
  env:
    CLEVER_TOKEN:  ${{ secrets.CLEVER_TOKEN }}
    CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}

Whatever follows CLEVER_ENV_ will be the name of the environment variable in the application, and the value will follow what is passed.

Environment variables will be set before the application is deployed, to let the new deployment use them.

Safelisting

Because GitHub actions share their environment, it would be possible for a malicious action used before this one to export an undesired INPUT_CLEVER_ENV_XYZ variable, which would be injected to your application. This is unfortunately not a bug, but a feature of Actions, according to GitHub.

Read more about this issue on my blog post: The Security of GitHub Actions.

Therefore, to make sure you will only set your own environment variables, you must set a safelist of comma-separated environment variable names. Only those will make it to your app.

Note: because the safelist can also be injected, it is strongly recommended to always set it to an empty string for deployments without extra env:

- uses: 47ng/actions-clever-cloud@master
  with:
    extraEnvSafelist: ''   # Disable env injection
  env:
    CLEVER_TOKEN:  ${{ secrets.CLEVER_TOKEN }}
    CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}

Caveats

If the deployment fails, the environment variables will still have been updated. This could be a problem if your app restarts or scales up, as the new instance would use the new variable.

In the future, we might include a way to rollback environment variables set by this action if deployment fails.

Deployment Timeout

Note: this feature is not yet released, but can be previewed from the master branch.

Because build minutes are precious, and also because of two ongoing issues in the Clever Tools CLI ( #318, #319), you can specify a timeout in seconds after which the workflow will move on, regardless of the deployment status:

- uses: 47ng/actions-clever-cloud@master
  with:
    timeout: 1800 # wait at maximum 30 minutes before moving on
  env:
    CLEVER_TOKEN:  ${{ secrets.CLEVER_TOKEN }}
    CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}

Versioning

This action follows SemVer.

To specify the version of the action to use:

  • uses: 47ng/actions-clever-cloud@v1: latest stable version
  • uses: 47ng/actions-clever-cloud@master: latest code from master
  • uses: 47ng/actions-clever-cloud@v1.2.3: a specific version (check out the releases)

Why ?

Clever Cloud lets you connect your GitHub repository so that any push is deployed. This is great for staging environments, but in some cases you may want to deploy to production only on specific events, like a release being published, or after a CI run.

About

GitHub Action to deploy to Clever Cloud

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 97.3%
  • Dockerfile 2.7%