Skip to content

Update main.yml

Update main.yml #29

Workflow file for this run

name: build-deploy
on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev", "main" ]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build Docker image
run: |
printf "%s\n" "$EC2_PRIVATE_KEY" > key.pem
cat key.pem
shell: bash
env:
EC2_PRIVATE_KEY: ${{ secrets.EC2_PRIVATE_KEY }}