Skip to content

Update Makefile

Update Makefile #3

Workflow file for this run

name: Build latest image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker Login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Lint
uses: golangci/golangci-lint-action@v5
with:
args: --timeout=3m -p bugs -p unused
- name: Build the Docker images
run: |
make dockerimages
make dockerpush