Skip to content

Commit

Permalink
Deploy test
Browse files Browse the repository at this point in the history
  • Loading branch information
ichiki-mfw committed Jul 16, 2024
1 parent 8701ad2 commit 20518cb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@ jobs:
- name: Install Serverless utils
run: sudo npm i -g @serverless/[email protected]
- name: Install simple-git # https://github.com/serverless/serverless/issues/12418#issuecomment-2048920297
run: sudo npm i -g [email protected]
run: |
CURRENT_DIR=$(pwd)
echo "::set-output name=current_dir::$CURRENT_DIR"
cd /usr/local/lib/node_modules/serverless
sudo npm i -g [email protected]
- name: Serverless deploy
run: make deploy
run: |
cd ${{steps.checkout.outputs.current_dir}}
make deploy
env:
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}}
Expand Down

0 comments on commit 20518cb

Please sign in to comment.