Skip to content

🌿 chore(document): fix emoji in readme file #6

🌿 chore(document): fix emoji in readme file

🌿 chore(document): fix emoji in readme file #6

Workflow file for this run

---
name: CI/CD pipeline for building Docker image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image
run: docker build -t databurst/git-sync:latest .
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push image to Docker Hub
run: docker push databurst/git-sync:latest