Skip to content

Commit

Permalink
chore: release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlescure committed Nov 12, 2020
1 parent 14950ca commit d8ec8e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL "com.github.actions.description"="Build a React.js web app and sync to an
LABEL "com.github.actions.icon"="upload-cloud"
LABEL "com.github.actions.color"="green"

LABEL version="1.0.1"
LABEL version="1.0.2"
LABEL repository="https://github.com/jeanlescure/react-deploy-to-s3-action"
LABEL homepage="https://jeanlescure.io/"
LABEL maintainer="Jean Lescure <[email protected]>"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,23 @@ name: Upload Website
on:
push:
branches:
- master
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: jeanlescure/react-deploy-to-s3-action@master
- uses: actions/checkout@main
- uses: jeanlescure/react-deploy-to-s3-action@main
with:
args: --acl public-read --follow-symlinks --delete
env:
NODE_ENV: 'development' # optional: defaults to production
NODE_ENV: development # optional: defaults to production
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'us-west-1' # optional: defaults to us-east-1
SOURCE_DIR: 'bundle' # optional: defaults to public
AWS_REGION: us-west-1 # optional: defaults to us-east-1
SOURCE_DIR: bundle # optional: defaults to public
```
### Configuration
Expand Down

0 comments on commit d8ec8e9

Please sign in to comment.