Workflow file for this run
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: Cleanup AWS S3 Bucket | |
on: | |
push: | |
branches: | |
- fix/cleanup-aws-workflow | |
pull_request: | |
types: [closed] | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Configure AWS credentials | |
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: us-west-2 | |
# - name: Install AWS CLI | |
# #install AWS CLI directly from AWS | |
# run: | | |
# curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |
# unzip awscliv2.zip | |
# sudo ./aws/install --update | |
- name: Check AWS CLI Version | |
run: aws --version | |
- name: Remove files in results sub_dir | |
if: aws s3 ls s3://cellpack-results/${{ github.head_ref }} | |
run: aws s3 rm s3://cellpack-results/${{ github.head_ref }} --recursive |