Skip to content

Commit

Permalink
feature: add EB deployment action
Browse files Browse the repository at this point in the history
  • Loading branch information
lballore authored May 30, 2021
1 parent 7fa718b commit 6de0875
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/eb-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Elastic Beanstalk Deployment
on:
push:
tags:
- 'v*'

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: Checkout source code
uses: actions/checkout@v1

- name: Elastic Beanstalk Deployment
uses: kumarshivam12/[email protected]
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
EB-BUCKET-NAME: elasticbeanstalk-eu-north-1-774679440178
APPLICATION-NAME: deep-metal-demo
EB-ENV-NAME: deep-metal-demo
AWS-REGION: eu-north-1

0 comments on commit 6de0875

Please sign in to comment.