You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 28, 2025. It is now read-only.
I was reading an article on how to deploy a serverless app from a CI/CD environment. The article makes use of the sls deploy command extensively, however since it is discouraged to be used with serverless-next, what other options do we have.
The text was updated successfully, but these errors were encountered:
This project uses the beta version of serverless components. To deploy a serverless component you simply run serverless instead of serverless deploy and that should work fine.
In future once the project is upgraded to work with the newer version of Serverless Components (GA) then it would be serverless deploy.
My solution right now is to create a deployment script that syncs the .serverless directory with AWS S3 and deploys three different stages, all in CI/CD workflows (I use GitHub Actions, but the script I created should work for any provider).
As mentioned, with the GA version of Serverless Components you will get serverless deploy and I think also there would be support for syncing serverless state through Serverless Framework
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I was reading an article on how to deploy a serverless app from a CI/CD environment. The article makes use of the
sls deploy
command extensively, however since it is discouraged to be used withserverless-next
, what other options do we have.The text was updated successfully, but these errors were encountered: