Add latest models and remove legacy ones #1075
This file contains hidden or 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: Removedeploypreview | |
| permissions: | |
| contents: read | |
| statuses: write | |
| pull-requests: write | |
| env: | |
| VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| on: | |
| pull_request_target: | |
| types: | |
| - closed | |
| jobs: | |
| delete-deployments: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Extract branch name | |
| shell: bash | |
| run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
| id: extract_branch | |
| - name: Hash branch name | |
| uses: pplanel/[email protected] | |
| id: hash_branch | |
| with: | |
| input: ${{ steps.extract_branch.outputs.branch }} | |
| method: MD5 | |
| - name: Call the delete-deployment-preview.sh script | |
| env: | |
| META_TAG: ${{ steps.hash_branch.outputs.digest }} | |
| run: | | |
| bash ./scripts/delete-deployment-preview.sh |