Merge pull request #55 from tmea-tlip/about_us_changes #23
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: www.tlip.io Production Build and Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**" | |
| - "static/**" | |
| - "package.json" | |
| - ".github/workflows/*" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| # Install older version of Vercel CLI until this issue is fixed | |
| # https://github.com/BetaHuhn/deploy-to-vercel-action/issues/393 | |
| - name: Install Vercel CLI | |
| run: npm install -g [email protected] | |
| - name: Deploy to Vercel | |
| uses: BetaHuhn/[email protected] | |
| 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 |