Skip to content

update

update #19

Workflow file for this run

name: Build LLDAP
on:
workflow_dispatch:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Build lldap and push Docker image
uses: docker/build-push-action@v3
with:
push: false
file: Dockerfile
platforms: linux/amd64