Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth9903 authored Mar 8, 2024
1 parent f5e40f9 commit bcfac3a
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# This is a basic workflow to help you get started with Actions

name: Development

# Controls when the workflow will run
Expand All @@ -21,19 +19,31 @@ jobs:

steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

# - name: Set up Node.js
# uses: actions/setup-node@v4
# with:
# node-version: '20'

- name: Install dependencies
run: npm install

- name: Build Next.js app
run: npm run build

- name: Generate deployment package
run: zip -r deploy.zip . -x '*.git*' -x "*node_modules*"
run: zip -r deploy.zip '.next' 'package.json' 'public'

- name: Deploy to EB
uses: einaregilsson/beanstalk-deploy@v18
uses: einaregilsson/beanstalk-deploy@v22
with:
aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
application_name: Gateway
environment_name: Gateway-env-dev
environment_name: next-blog-dev
region: ap-south-1
version_label: ver-${{ github.sha }}
deployment_package: deploy.zip
use_existing_version_if_available: true

0 comments on commit bcfac3a

Please sign in to comment.