Bump braces from 3.0.2 to 3.0.3 #8
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: Clean Preview | |
on: | |
pull_request: | |
types: [ closed ] | |
permissions: | |
contents: read | |
deployments: write | |
jobs: | |
close: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clean from GitHub | |
uses: bobheadxi/deployments@v1 | |
with: | |
step: delete-env | |
token: ${{ secrets.GITHUB_TOKEN }} | |
env: preview-${{ github.event.number }} | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --prod --frozen-lockfile --ignore-scripts | |
- name: Auth Google Cloud | |
uses: google-github-actions/auth@v1 | |
with: | |
credentials_json: ${{ secrets.GCLOUD_AUTH }} | |
- name: Install Google Cloud | |
uses: google-github-actions/setup-gcloud@v1 | |
- name: Clean from Google Cloud | |
run: ./node_modules/.bin/ssdeploy close $PR --verbose | |
env: | |
PR: ${{ github.event.number }} | |
GCLOUD_APP: ${{ secrets.GCLOUD_APP }} | |
GCLOUD_PROJECT: ${{ secrets.GCLOUD_PROJECT }} | |
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }} | |
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }} |