Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ following:
node_module from the registry)
5. Creating a `netlify.toml` inside the temp directory of the fixture and adding the runtime as a
plugin.
6. Running `netlify deploy --build` invoking the runtime. This will use the
6. Running `netlify deploy` invoking the runtime during the build step. This will use the
[next-runtime-testing](https://app.netlify.com/sites/next-runtime-testing/overview) as site to
deploy to.
7. Using the `deployId` and `url` of the deployed site to run some
Expand Down
2 changes: 1 addition & 1 deletion tests/netlify-deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class NextDeployInstance extends NextInstance {

const deployRes = await execa(
'npx',
['netlify', 'deploy', '--build', '--message', deployTitle ?? '', '--alias', deployAlias],
['netlify', 'deploy', '--message', deployTitle ?? '', '--alias', deployAlias],
{
cwd: this.testDir,
reject: false,
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/create-e2e-fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ async function deploySite(
console.log(`🚀 Building and deploying site...`)

const outputFile = 'deploy-output.txt'
let cmd = `npx netlify deploy --build --site ${siteId} --alias ${NETLIFY_DEPLOY_ALIAS}`
let cmd = `npx netlify deploy --site ${siteId} --alias ${NETLIFY_DEPLOY_ALIAS}`

if (packagePath) {
cmd += ` --filter ${packagePath}`
Expand Down
Loading