From 680491e338463d1e092ae0c1e6f87985f352152c Mon Sep 17 00:00:00 2001 From: Michael Parker Date: Wed, 18 Dec 2024 18:02:59 -0600 Subject: [PATCH] feat: remove push workflow --- .github/workflows/push.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/push.yaml diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml deleted file mode 100644 index 8bc75e0..0000000 --- a/.github/workflows/push.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Push to S3 - -on: - push: - branches: - - main - workflow_dispatch: {} - -jobs: - push: - name: Push - runs-on: ubuntu-latest - permissions: - contents: read - id-token: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Assume IAM Role - uses: aws-actions/configure-aws-credentials@v4 - with: - role-to-assume: ${{ secrets.ALLOW_CRESTA_S3_DATA_TRANSFER_ROLE_ARN }} - role-session-name: allow-cresta-s3-data-transfer - aws-region: us-west-2 - - - name: Push to S3 - run: | - aws s3 cp ./aws s3://${{ secrets.CRESTA_CLOUDFORMATION_S3_BUCKET }}/allow-cresta-aws-connect/aws --recursive