s3-sync-action icon indicating copy to clipboard operation
s3-sync-action copied to clipboard

Is it possible to get the creator of this GH Action verified in the marketplace?

Open javsalgar opened this issue 3 years ago • 6 comments
trafficstars

My organization is now enforcing to use actions by verified creators. I'd love to use this action but I see that right now it is not verified. Any chance that this could happen?

javsalgar avatar Mar 25 '22 11:03 javsalgar

The workaround is to use a container which provides the aws binary:

- name: Sync to S3
  run: >
    aws s3 sync
    ./docs
    s3://${{ secrets.DOC_AWS_S3_BUCKET }}/
    --acl public-read --follow-symlinks --delete

  env:
    AWS_ACCESS_KEY_ID: ${{ secrets.DOC_AWS_ACCESS_KEY_ID }}
    AWS_SECRET_ACCESS_KEY: ${{ secrets.DOC_AWS_SECRET_ACCESS_KEY }}
    AWS_REGION: 'us-east-1'

Your pipeline may be simpler and run faster with one less Github Actions container to boot!

markstos avatar May 03 '22 22:05 markstos

@markstos Thanks for the alt solution. And... indeed build time for that step went ~32s to 10s.

digitalcraftco avatar May 23 '22 16:05 digitalcraftco

Runs on the same ubuntu-latest so this action now kind of seems redundant

LeKristapino avatar Nov 10 '22 16:11 LeKristapino

The maintainer is MIA. @jakejarvis Could you please transfer ownership of this repo? Or deprecate it...

colin-byrne-1 avatar Feb 10 '23 02:02 colin-byrne-1

@colin-byrne-1 Are you volunteering as the new maintainer?

markstos avatar Feb 13 '23 15:02 markstos

I got by with the AWS command line workaround, and have no vested interest, so I'm probably not the best person.

colin-byrne-1 avatar Feb 13 '23 17:02 colin-byrne-1