vercel-azure-devops-extension
vercel-azure-devops-extension copied to clipboard
An Azure DevOps Extension for deploying to Vercel from Azure Pipelines
Currently, it's impossible to run deployments to multiple projects within a single pipeline. This is not ideal behavior. The notes within the vercel-deployment-task-source indicate this should be possible. I believe...
This PR solves the problems I've tried to solve in #26 in a non-opinionated way and brings the functionality of the DevOps extension closer to the scope of a 'native'...
…n alias in separate task
Vercel deployments are succeeding to non-prod (`production: false`), but Azure is reporting task failure: ``` To deploy to production (mywebsite.com), run `vercel --prod` ##[error]Cannot read properties of undefined (reading 'length')...
Using the task instead of the script might seem advantageous but if you don't specify the requirements that the machine functioning as the agent pool must have then it makes...
Hi all, I'm troubleshooting why my environment variables specified in the `build-env` are not picked up by the application. Using this pipeline code ``` - task: vercel-deployment-task@1 displayName: Deploy inputs:...
I want to use this but my understanding from https://github.com/vercel/vercel-azure-devops-extension/blob/d23aa660e6d1bd4638107ed417cc86906453a493/vercel-deployment-task-source/src/index.ts#L184 is that there is no corresponding option to ensure that the `vercel pull` environment is the same as the target....