Skip to content

BlazeIsClone/s3-cli-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

S3 CLI ACTION

GitHub action for interacting with an AWS S3 compatible bucket storage.

Usage

Use this action to interact with AWS Command Line Interface (AWS CLI). Usage guide AWS Command Line Interface.

Example usage

- name: Push Backups to S3 Bucket
  uses: maya-hive/s3-cli-action@v1.0.0
  with:
    args: "sync backups s3://new_bucket/new_object"
  env:
    AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
    AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
    AWS_S3_ENDPOINT: ${{ secrets.AWS_S3_ENDPOINT }}
    AWS_REGION: ${{ secrets.AWS_REGION }}