Clean up S3 #335
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
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 }} |