Last active
September 13, 2020 10:44
-
-
Save sandeshbodake/821ace1d3bc9a1784b6ef48dcbc6d65c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: Generate deployment package | |
| run: | | |
| zip -r deploy.zip . -x '*.git*' | |
| - name: Deploy to EB | |
| uses: einaregilsson/beanstalk-deploy@v11 | |
| with: | |
| aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| application_name: testing-rails | |
| environment_name: staging | |
| version_label: 2 | |
| region: ap-south-1 | |
| deployment_package: deploy.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment