From eb50c4f28d978fcd914b819d523e8da607d05b0c Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Fri, 21 Apr 2023 18:29:22 +0200 Subject: Clean up GitHub workflows (#2951) * Run Gradle wrapper checksum less often * Do not publish examples as artifacts in internal PRs --- .github/workflows/s3-cleanup.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/s3-cleanup.yml (limited to '.github/workflows/s3-cleanup.yml') diff --git a/.github/workflows/s3-cleanup.yml b/.github/workflows/s3-cleanup.yml deleted file mode 100644 index 52372f2c..00000000 --- a/.github/workflows/s3-cleanup.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: S3-cleanup - -on: delete - -env: - bucket-name: 'dokka-snapshots' - -jobs: - cleanup: - runs-on: ubuntu-latest - steps: - - name: Configure AWS credentials for S3 access - 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: eu-central-1 - - name: Delete branch from s3 - run: aws s3 --recursive rm s3://${{ env.bucket-name }}/${{ github.event.ref }} -- cgit