From b0661fbc0cbcec4d55fd0546f1f174d1685fe839 Mon Sep 17 00:00:00 2001 From: Siddharth Patel <71704867+siddharth9903@users.noreply.github.com> Date: Wed, 6 Mar 2024 22:29:58 +0530 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..9d53939 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,38 @@ +# This is a basic workflow to help you get started with Actions + +name: Development + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [siddharth] + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [20.10.0] + + steps: + - name: Checkout source code + uses: actions/checkout@v2 + + - name: Generate deployment package + run: zip -r deploy.zip . -x '*.git*' -x "*node_modules*" + + - name: Deploy to EB + uses: einaregilsson/beanstalk-deploy@v18 + with: + aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + application_name: Gateway + environment_name: seistart-dev + region: ap-south-1 + version_label: ver-${{ github.sha }} + deployment_package: deploy.zip