fix(auth): adiciona redirecionamento e páginas customizadas no fluxo … #7
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: Deploy via Vercel | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - feat/** | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout código | |
| uses: actions/checkout@v3 | |
| - name: Instalar dependências | |
| run: npm install | |
| working-directory: linkando-frontend | |
| - name: Build do projeto | |
| run: npm run build | |
| working-directory: linkando-frontend | |
| - name: Deploy na Vercel | |
| uses: amondnet/vercel-action@v25 | |
| with: | |
| vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
| vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
| vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} | |
| vercel-args: '--prod' | |
| working-directory: ./linkando-frontend |