aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/preview-cleanup-web-s3.yml
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-04-21 18:29:22 +0200
committerGitHub <noreply@github.com>2023-04-21 18:29:22 +0200
commiteb50c4f28d978fcd914b819d523e8da607d05b0c (patch)
tree87041774b82c0af473e3766089f67d939f901eee /.github/workflows/preview-cleanup-web-s3.yml
parentde63c4479bcd9a81db25b5432df82edb98119410 (diff)
downloaddokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.tar.gz
dokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.tar.bz2
dokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.zip
Clean up GitHub workflows (#2951)
* Run Gradle wrapper checksum less often * Do not publish examples as artifacts in internal PRs
Diffstat (limited to '.github/workflows/preview-cleanup-web-s3.yml')
-rw-r--r--.github/workflows/preview-cleanup-web-s3.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/preview-cleanup-web-s3.yml b/.github/workflows/preview-cleanup-web-s3.yml
new file mode 100644
index 00000000..289fdf6a
--- /dev/null
+++ b/.github/workflows/preview-cleanup-web-s3.yml
@@ -0,0 +1,20 @@
+name: Clean up S3
+
+on: delete
+
+env:
+ bucket-name: 'dokka-snapshots'
+
+jobs:
+ cleanup:
+ name: Branch preview
+ 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 }}