Skip to content
Merged

CD #46

Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
config: Install Serverless PLugins
  • Loading branch information
diegotony committed Mar 25, 2021
commit f6644842a5b15b01011218aee616a5e77f267255
4 changes: 4 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install Serverless
run: npm install

- name: Install Serverless Plugins
run: make install-serverless-plugins



6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,9 @@ help: Makefile
install-dependencies-nodejs:
cd nodejs-functions ; pwd ; $(MAKE) install-dependencies-nodejs

install-serverless-plugins:
serverless plugin install --name serverless-azure-functions

deploy-nodejs:
cd nodejs-functions ; pwd ; $(MAKE) deploy
cd nodejs-functions ; pwd ; $(MAKE) deploy