feat: 🎨 changed border bottom left for translation badge in case there's translation app icon #1391
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: Build and Deploy | |
on: | |
pull_request: | |
env: | |
VERCEL_NAME: ${{ github.event.repository.name }} | |
VERCEL_TOKEN: ${{ secrets.CAISY_VERCEL_TOKEN }} | |
INTERNAL_AUTOMATION_AUTH_TOKEN: ${{ secrets.INTERNAL_AUTOMATION_AUTH_TOKEN }} | |
jobs: | |
check-build-publish-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v5 | |
- name: Print branch name | |
run: echo "Branch name:${{ steps.branch-name.outputs.current_branch }}" | |
- name: Run deployment to vercel | |
run: export BRANCH_NAME=${{ steps.branch-name.outputs.current_branch }} && bash dep.sh |