feat: add LinkedIn icon "Any Questions?" section (#24) #4
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: www.tlip.io Components Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "src/**" | |
- "static/**" | |
- "package.json" | |
- ".github/workflows/*" | |
concurrency: | |
group: ui | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Deploy to Vercel | |
uses: BetaHuhn/deploy-to-vercel-action@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
VERCEL_SCOPE: ${{ secrets.VERCEL_SCOPE }} | |
ALIAS_DOMAINS: ${{ secrets.DOMAIN }} | |
PRODUCTION: true |