diff --git a/Dockerfile b/Dockerfile index 19854c2..4c62f8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.7-alpine LABEL "com.github.actions.name"="S3 Sync" -LABEL "com.github.actions.description"="Sync a directory to a S3 repository" +LABEL "com.github.actions.description"="Sync a directory to a AWS S3 repository" LABEL "com.github.actions.icon"="refresh-cw" LABEL "com.github.actions.color"="green" diff --git a/entrypoint.sh b/entrypoint.sh index 19e104a..7e57900 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,3 +14,5 @@ aws s3 sync ${SOURCE_DIR} s3://${AWS_S3_BUCKET} \ --delete \ --region ${AWS_REGION} \ --metadata-directive "REPLACE" + +rm -rf ~/.aws