Skip to content

Commit

Permalink
chore: Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Oct 6, 2022
1 parent 9e84918 commit b540653
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ steps:
fetch-depth: 0

# Deploy your application
- uses: 47ng/actions-clever-cloud@v1.2.0
- uses: 47ng/actions-clever-cloud@v1.3.0
env:
CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }}
CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}
Expand All @@ -42,7 +42,7 @@ If you have committed the `.clever.json` file, you only need to specify
the alias of the application to deploy:

```yml
- uses: 47ng/actions-clever-cloud@v1.2.0
- uses: 47ng/actions-clever-cloud@v1.3.0
with:
alias: my-app-alias
env:
Expand All @@ -54,7 +54,7 @@ If you don't have this `.clever.json` file or you want to explicly
deploy to another application, you can pass its ID:

```yml
- uses: 47ng/actions-clever-cloud@v1.2.0
- uses: 47ng/actions-clever-cloud@v1.3.0
with:
appID: app_facade42-cafe-babe-cafe-deadf00dbaad
env:
Expand Down Expand Up @@ -96,7 +96,7 @@ You can set extra environment variables on the deployed application under the
key=value).

```yml
- uses: 47ng/actions-clever-cloud@v1.2.0
- uses: 47ng/actions-clever-cloud@v1.3.0
with:
setEnv: | # <- note the pipe here..
FOO=bar
Expand Down Expand Up @@ -136,7 +136,7 @@ you can specify a timeout in seconds after which the workflow will move on,
regardless of the deployment status:

```yml
- uses: 47ng/actions-clever-cloud@v1.2.0
- uses: 47ng/actions-clever-cloud@v1.3.0
with:
timeout: 1800 # wait at maximum 30 minutes before moving on
env:
Expand All @@ -151,7 +151,7 @@ regardless of the deployment status:
Clever Cloud uses a Git remote to perform deploys. By default, if the commit you want to deploy is not a fast-forward from the commit currently deployed, the deploy will be rejected. You can pass `force: true` to force the deploy anyway:

```yml
- uses: 47ng/actions-clever-cloud@v1.2.0
- uses: 47ng/actions-clever-cloud@v1.3.0
with:
appID: app_facade42-cafe-babe-cafe-deadf00dbaad
force: true
Expand Down Expand Up @@ -207,7 +207,7 @@ _Note: this behaviour will be disabled if the `quiet` option is used._
This action follows [SemVer](https://semver.org/).

To specify the version of the action to use:
- `uses: 47ng/actions-clever-cloud@v1.2.0`: latest stable version
- `uses: 47ng/actions-clever-cloud@v1.3.0`: latest stable version
- `uses: 47ng/actions-clever-cloud@3e5402496b8d6492401ebb3134acfeccc25c3fce`: pinned to a specific Git SHA-1 (check out the [releases](https://github.com/47ng/actions-clever-cloud/releases))
- `uses: docker://47ng/actions-clever-cloud:latest`: latest code from master (not recommended, as it may break: hic sunt dracones.)

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ inputs:
to be set, see https://github.com/47ng/ations-clever-cloud#safelisting
runs:
using: docker
image: docker://47ng/actions-clever-cloud:v1.2.0
image: docker://47ng/actions-clever-cloud:v1.3.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@47ng/actions-clever-cloud",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"description": "GitHub Action to deploy to Clever Cloud",
"main": "dist/main.js",
Expand Down

0 comments on commit b540653

Please sign in to comment.