⬆️ Bump @percy/storybook from 3.3.1 to 5.0.3 #234
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
# This workflow takes care of cleaning up the pull request deploy for a clean S3 bucket. | |
name: Post-PR cleanup | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- master | |
env: | |
BUILD_DEST_DIR: ${{ github.event.repository.name }}/${{ github.event.pull_request.number }} | |
S3_BUCKET: ${{ secrets.AWS_S3_PR_DEPLOYMENT_BUCKET }} | |
jobs: | |
post-pr-cleanup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure AWS Credentials 🔧 | |
uses: aws-actions/[email protected] | |
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 files 🗑 | |
run: aws s3 rm s3://${{ env.S3_BUCKET }}/${{ env.BUILD_DEST_DIR }} --recursive | |
- name: Comment the deleted project 💬 | |
uses: marocchino/[email protected] | |
with: | |
message: | | |
🚮 The files previously deployed on /${{ env.BUILD_DEST_DIR }}/ were already removed. |