Skip to content

build: Update dependencies #7

build: Update dependencies

build: Update dependencies #7

Workflow file for this run

name: Build and Publish
on:
push:
branches: [main]
pull_request:
jobs:
build-and-push-docker-image:
name: Build Docker image and push to repositories
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-go@v4
with:
go-version: stable
- name: Build binary
run: make
- name: Login to Github Packages
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image and push
uses: docker/build-push-action@v2
with:
context: .
tags: |
ghcr.io/kastelo-labs/git-mirror:latest
# build on feature branches, push only on main branch
push: ${{ github.ref == 'refs/heads/main' }}