From f162bafe0699070d85092b4b00be05f082c8b62d Mon Sep 17 00:00:00 2001 From: ambientlight Date: Sun, 13 Jun 2021 16:52:15 +0800 Subject: [PATCH] bump version in readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8a0b3f05..046984de 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ 🚀 :octocat: AWS Amplify CLI support for github actions. This action supports configuring and deploying your project to AWS as well as creating and undeploying amplify environments. ## Getting Started -You can include the action in your workflow as `actions/amplify-cli-action@0.2.2`. Example (configuring amplify, building and deploying): +You can include the action in your workflow as `actions/amplify-cli-action@0.3.0`. Example (configuring amplify, building and deploying): ```yaml name: 'Amplify Deploy' @@ -32,7 +32,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: configure amplify - uses: ambientlight/amplify-cli-action@0.2.2 + uses: ambientlight/amplify-cli-action@0.3.0 with: amplify_command: configure amplify_env: prod @@ -49,7 +49,7 @@ jobs: # npm run test - name: deploy - uses: ambientlight/amplify-cli-action@0.2.2 + uses: ambientlight/amplify-cli-action@0.3.0 with: amplify_command: publish amplify_env: prod @@ -253,7 +253,7 @@ jobs: # also remove -_ from branch name and limit length to 10 for amplify env restriction echo "##[set-output name=amplifyenvname;]$(echo ${GITHUB_HEAD_REF//[-_]/} | cut -c-10)" - name: deploy test environment - uses: ambientlight/amplify-cli-action@0.2.2 + uses: ambientlight/amplify-cli-action@0.3.0 with: amplify_command: add_env amplify_env: ${{ steps.setenvname.outputs.amplifyenvname }} @@ -271,7 +271,7 @@ jobs: # npm run test - name: undeploy test environment - uses: ambientlight/amplify-cli-action@0.2.2 + uses: ambientlight/amplify-cli-action@0.3.0 # run even if previous step fails if: failure() || success() with: