my serverless yml is this
service: blog-test
frameworkVersion: “=2.8.0”
provider:
name: aws
runtime: go1.x
package:
exclude:
- ./**
include: - ./bin/**
functions:
handler:
handler: bin/handler
events:
- http:
path: /test
method: get
environment:
GIN_MODE: release
and when i try to command “sls deploy”
then following error shows up…
Serverless: Packaging service…
Serverless: Excluding development dependencies…
Serverless: Creating Stack…
Serverless: Checking Stack create progress…
CloudFormation - DELETE_IN_PROGRESS - AWS::CloudFormation::Stack - blog-test-dev
CloudFormation - DELETE_COMPLETE - AWS::S3::Bucket - ServerlessDeploymentBucket
CloudFormation - DELETE_COMPLETE - AWS::CloudFormation::Stack - blog-test-dev
Serverless: Stack create finished…
Serverless Error ---------------------------------------
Stack ‘blog-test-dev’ does not exist
Your Environment Information ---------------------------
Operating System: darwin
Node Version: 10.15.3
Framework Version: 2.8.0
Plugin Version: 4.1.1
SDK Version: 2.3.2
Components Version: 3.2.7
=========
does anybody know how to fix it?