From f2d025b9ed7db03a282b661c8fb62c7a561254f7 Mon Sep 17 00:00:00 2001 From: Willy Date: Fri, 3 Feb 2023 19:17:48 +0100 Subject: [PATCH] remove aws related steps we're not gonna be using any of them in the near future --- .github/workflows/build.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 331d3924..f52855be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,23 +74,6 @@ jobs: name: static-rice-box path: ./source - - name: Configure AWS credentials for Asset uploads - # temporarily disabled - if: "false" - uses: aws-actions/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-west-2 - - - name: Upload Static Assets to S3 - # temporarily disabled - if: "false" - run: | - tar -czvf source.tar.gz source/ - aws s3 cp source.tar.gz s3://assets.statping.com/commit/${{ github.sha }}/ - rm -rf source.tar.gz - build: needs: [ data, frontend ] runs-on: ubuntu-latest @@ -118,15 +101,6 @@ jobs: name: static-rice-box path: ./source - - name: Configure AWS credentials for Asset uploads - # temporarily disabled - if: "false" - uses: aws-actions/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-west-2 - - name: Set Linux Build Flags if: matrix.platform == 'linux' run: | @@ -201,12 +175,6 @@ jobs: name: statping-${{ matrix.platform }}-${{ matrix.arch }} path: ./build - - name: Upload Compiled Binaries to S3 - # temporarily disabled - if: "false" - run: | - aws s3 cp build/${{ env.compressed }} s3://assets.statping.com/commit/${{ github.sha }}/ - # TODO refactor (and fix) tests test: