Skip to content

Releases: s3-actions/s3cmd

v1.8.0

25 Sep 10:42
da1d638
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.7.0...v1.8.0

v1.7.0

28 Aug 19:00
94a3bbf
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.1...v1.7.0

v1.6.1

10 Apr 17:42
ef6ce58
Compare
Choose a tag to compare

Releasing another tag to fix the incorrect tagged version v.16.0 => v.1.6.1

v1.6.0

08 Apr 21:35
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.5.0...v.16.0

v1.5.0

18 May 09:20
4e3a53c
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.4.0...v1.5.0

v1.4.0

31 Jan 21:41
6f17433
Compare
Choose a tag to compare

What's Changed

  • Add support for scaleway by @PandaCrafter1 in #8

New Contributors

  • @PandaCrafter1 made their first contribution in #8

Full Changelog: v1.3.0...v1.4.0

v1.3.0

13 Nov 08:49
a70db2d
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @chayim made their first contribution in #7

Full Changelog: v1.2.0...v1.3.0

v1.2.0

18 Mar 19:51
6dca00b
Compare
Choose a tag to compare

What Changed?

  • Digital Ocean Support #4 thanks to @laithrafid
  • Bumped Node Fetch version due to vulnerability

Use S3cmd

07 Apr 01:49
Compare
Choose a tag to compare

Use S3cmd

Use S3cmd command line utility. Currently, LInode and AWS preconfigured provider.

- name: Set up S3cmd cli tool
  uses: s3-actions/s3cmd@v1.1
  with:
    provider: aws # default is linode
    region: 'eu-central-1'
    access_key: ${{ secrets.S3_ACCESS_KEY }}
    secret_key: ${{ secrets.S3_SECRET_KEY }}

- name: Interact with object storage
  run: |
    s3cmd sync --recursive --acl-public dist s3://awesome.blog
    s3cmd info s3://awesome.blog

Use S3cmd

07 Apr 01:36
Compare
Choose a tag to compare

Use S3cmd

Version 1 of this simple S3cmd wrapper. It has been tested with AWS and Linode, but it should work with any s3 provider.

- name: Set up S3cmd cli tool
  uses: s3-actions/s3cmd@v1
  with:
    provider: aws # default is linode
    region: 'eu-central-1'
    access_key: ${{ secrets.S3_ACCESS_KEY }}
    secret_key: ${{ secrets.S3_SECRET_KEY }}

- name: Interact with object storage
  run: |
    s3cmd sync --recursive --acl-public dist s3://awesome.blog
    s3cmd info s3://awesome.blog