-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (38 loc) · 1.06 KB
/
main.yml
File metadata and controls
47 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Docker Workflow
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: paulovanzolini
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
file: Dockerfile
tags: paulovanzolini/bora:backend-${{ steps.extract_branch.outputs.branch }}
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Start Deployment
uses: appleboy/ssh-action@v0.1.10
with:
host: ec2-3-84-165-44.compute-1.amazonaws.com
username: ubuntu
key: ${{ secrets.SSH_BORA_PEM }}
port: 22
script: ./deploy.sh