diff options
author | Alan Pearce | 2024-06-25 18:48:51 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-25 18:49:56 +0200 |
commit | 9c3dd9231015d2d75d104bbc55b6e5326e8656bd (patch) | |
tree | 5669a8afa4ff337779b72326ac8a8b27071f177b /justfile | |
parent | b7d3ee578a0fa7c482c386242f2fc52c2600568a (diff) | |
download | website-9c3dd9231015d2d75d104bbc55b6e5326e8656bd.tar.lz website-9c3dd9231015d2d75d104bbc55b6e5326e8656bd.tar.zst website-9c3dd9231015d2d75d104bbc55b6e5326e8656bd.zip |
remove netlify and vercel configurations
Diffstat (limited to 'justfile')
-rwxr-xr-x | justfile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/justfile b/justfile index 385f439..1dc651a 100755 --- a/justfile +++ b/justfile @@ -32,21 +32,3 @@ ci: build check-links cd *DEPLOY_FLAGS: fly auth docker fly deploy --image $(KO_DOCKER_REPO={{ docker-registry }} ko build --bare ./cmd/server) {{ DEPLOY_FLAGS }} - -deploy-vercel-preview: build - vercel pull --environment=preview - vercel deploy - -deploy-vercel: build check-links - vercel pull --environment=production - vercel deploy --prod - -deploy-netlify-preview: build - netlify deploy - -deploy-netlify: build check-links - netlify deploy --prodIfUnlocked - -deploy-preview: deploy-vercel-preview deploy-netlify-preview - -deploy-production: deploy-vercel deploy-netlify |