Skip to content

Commit

Permalink
bump version in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ambientlight committed Jun 13, 2021
1 parent c75594c commit f162baf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand All @@ -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:
Expand Down

0 comments on commit f162baf

Please sign in to comment.