Update deploy.yaml #3
This file contains 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: Deploy Frontend | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
- run: docker build -t wjddn/react-test -f Dockerfile.dev . | |
- run: docker run -e CI=true wjddn/react-test npm test | |
- name: Generate deployment package | |
run: zip -r deploy.zip . -x '*.git*' | |
- name: Deploy to EB | |
uses: einaregilsson/beanstalk-deploy@v18 | |
with: | |
aws_access_key: ${{ secrets.AWS_ACCESS_KEY }} | |
aws_secret_key: ${{ secrets.AWS_SECRET_KEY }} | |
application_name: react-docker-gh-test | |
environment_name: React-docker-gh-test-env | |
existing_bucket_name: elasticbeanstalk-eu-north-1-900478210705 | |
region: eu-north-1 | |
version_label: ${{ github.sha }} | |
deployment_package: deploy.zip |