Compare commits

..

2 Commits

Author SHA1 Message Date
1bd7e909de Merge pull request 'feat: update Vercel deployment workflow to use production build and deploy' (#9) from feature/adds-deploy-workflow into main
Some checks failed
Build and Test / run-test (20.x) (push) Successful in 45s
Vercel Preview Deployment / deploy (push) Has been cancelled
Reviewed-on: http://gitea.hideyoshi.com.br/HideyoshiNakazone/hideyoshi-blog/pulls/9
2026-04-21 18:32:01 +00:00
cca07a91cd feat: update Vercel deployment workflow to use production build and deploy
All checks were successful
Build and Test / run-test (20.x) (push) Successful in 44s
2026-04-21 15:31:30 -03:00

View File

@@ -24,7 +24,7 @@ jobs:
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts - name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel - name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}