Skip to content

Commit

Permalink
Hail mary: Use sls over serverless since that's what they use in the …
Browse files Browse the repository at this point in the history
…docs.
  • Loading branch information
mgdaily committed Jun 19, 2024
1 parent ebae40b commit bc23faa
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,7 @@ jobs:

# Install serverless
- name: Install Serverless
run: |
npm install -g serverless &&
npm install --save serverless-python-requirements
run: npm install -g serverless

# Install Node dependencies
- name: Set up Environment
Expand All @@ -106,10 +104,10 @@ jobs:
# Install Serverless plugins
- name: Install Plugins
run: |
serverless plugin install --name serverless-python-requirements &&
serverless plugin install --name serverless-domain-manager &&
serverless plugin install --name serverless-prune-plugin &&
serverless plugin install --name serverless-offline
sls plugin install --name serverless-python-requirements &&
sls plugin install --name serverless-domain-manager &&
sls plugin install --name serverless-prune-plugin &&
sls plugin install --name serverless-offline
# Deploy to stage
- name: Serverless Deploy
Expand Down

0 comments on commit bc23faa

Please sign in to comment.