Skip to content

Commit 8497914

Browse files
committed
Update docs
1 parent 2186719 commit 8497914

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM python:3.8-alpine
22

3-
LABEL "com.github.actions.name"="S3 Sync with CloudFront Cache invalidation"
3+
LABEL "com.github.actions.name"="AWS S3 Sync with CloudFront Cache invalidation"
44
LABEL "com.github.actions.description"="Sync a directory to an AWS S3 bucket and invalidate the CloudFront cache"
55
LABEL "com.github.actions.icon"="refresh-cw"
66
LABEL "com.github.actions.color"="green"
77

88
LABEL version="1.0"
9-
LABEL repository="https://github.com/kersvers/s3-sync-action"
9+
LABEL repository="https://github.com/kersvers/s3-sync-with-cloudfront-invalidation"
1010
LABEL homepage="https://kersvers.team"
1111
LABEL maintainer="Robin van Wijngaarden <robin@kersvers.team>"
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v2
34-
- uses: kersvers/s3-sync-action@master
34+
- uses: kersvers/s3-sync-with-cloudfront-invalidation@v1.0
3535
with:
3636
args: --acl public-read --follow-symlinks --delete
3737
env:

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: "S3 Sync with CloudFront Cache invalidation"
2-
description: "Sync a directory to an AWS S3 repository and invalidate the CloudFront cache"
1+
name: "AWS S3 Sync with CloudFront Cache invalidation"
2+
description: "Sync a directory to an AWS S3 bucket and invalidate the CloudFront cache"
33
author: kersvers
44
runs:
55
using: docker

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ sh -c "aws s3 sync ${SOURCE_DIR:-.} s3://${AWS_S3_BUCKET}/${DEST_DIR} \
4949
--no-progress \
5050
${ENDPOINT_APPEND} $*"
5151

52-
sh -c "aws cloudfront create-invalidation --distribution-id ${DISTRIBUTION_ID} --paths "/*" --profile s3-sync-action"
52+
sh -c "aws cloudfront create-invalidation --distribution-id ${DISTRIBUTION_ID} --paths \"/*\" --profile s3-sync-action"
5353

5454
# Clear out credentials after we're done.
5555
# We need to re-run `aws configure` with bogus input instead of

0 commit comments

Comments
 (0)