Bump @algolia/client-search from 5.13.0 to 5.14.0 #418
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: "PREview: Delete" | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: mshick/add-pr-comment@v2 | |
continue-on-error: true | |
with: | |
message: | | |
**Cleaning up PREview environment...** | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
allow-repeats: true | |
- name: Obtain Bucket Name | |
uses: ./.github/actions/PREview-data | |
- name: Authenticate with Google Cloud | |
uses: "google-github-actions/auth@v2" | |
with: | |
credentials_json: "${{secrets.GCP_SERVICE_ACCOUNT}}" | |
- name: "Set up Cloud SDK" | |
uses: "google-github-actions/setup-gcloud@v2" | |
- name: Delete PReview bucket | |
run: gsutil rm -r gs://${BUCKET} | |
- uses: mshick/add-pr-comment@v2 | |
if: success() | |
continue-on-error: true | |
with: | |
message: | | |
**PREview environment deleted.** | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
allow-repeats: true |