Skip to content

Commit

Permalink
test STORJ
Browse files Browse the repository at this point in the history
  • Loading branch information
jhheider committed Feb 3, 2025
1 parent 2ad968b commit e895e26
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/cd.pantry.tgz.storj.test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: cd
run-name: "cd: pantry.tgz - storj test"

on:
push:

concurrency:
group: cd.pantry.tgz.storj.test
cancel-in-progress: true

jobs:
tarball:
runs-on: ubuntu-latest
env:
AWS_ENDPOINT_URL_S3: https://gateway.storjshare.io
steps:
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.STORJ_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.STORJ_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- uses: actions/checkout@v4
with:
path: co
- run: find co -type f -not -name package.yml -delete -o -type l -delete
- run: tar -C co -czf pantry.tgz .
- run: aws s3 cp
./pantry.tgz
s3://${{ secrets.STORJ_S3_BUCKET }}/pantry.tgz

0 comments on commit e895e26

Please # to comment.