Skip to content

Commit

Permalink
[C8 BE*] CI/CD Actions v9
Browse files Browse the repository at this point in the history
  • Loading branch information
RazinSyakib43 committed Aug 28, 2024
1 parent 9f6af60 commit 8b24a90
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,18 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install Yarn
run: npm install --global yarn@latest

- name: Clean Yarn Cache
run: yarn cache clean

- name: Remove Node Modules
run: rm -rf node_modules

- name: Install Dependencies
run: npm install
run: yarn install --frozen-lockfile
- name: Generate deployment package
run: zip -r deploy.zip . -x '*.git*'
- name: Deploy to EB
Expand Down

0 comments on commit 8b24a90

Please sign in to comment.