Skip to content

Commit

Permalink
feat: create docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
franklaercio committed Feb 19, 2024
1 parent 317f17c commit 67c2ac1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Docker Build and Push

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Login to Docker Hub
run: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin

- name: Build Docker image
run: docker build -t $DOCKER_USERNAME/rinha-de-backend-2024-q1 .

- name: Push Docker image
run: docker push $DOCKER_USERNAME/rinha-de-backend-2024-q1

0 comments on commit 67c2ac1

Please sign in to comment.