Skip to content

Fix CI by building/running the same compose service #37

Fix CI by building/running the same compose service

Fix CI by building/running the same compose service #37

---
name: Build APACHE latest from main (or manually from a selected branch)
on:
workflow_dispatch: # This allows to kick-off the action manually from GitHub Actions
push:
branches: [ main ] # This watches pushes to the "main" branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image and push to GitHub Container Registry
uses: docker/build-push-action@v5
with:
context: ./
target: server
push: true
tags: 'ghcr.io/mlibrary/lauth/lauth-apache:${{ github.sha }}, ghcr.io/mlibrary/lauth/lauth-apache:latest'
file: ./apache/Dockerfile