Skip to content

Adjust connection pooling #36

Adjust connection pooling

Adjust connection pooling #36

name: Build and publish image (main)
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build Docker image
run: |
docker build -t ghcr.io/davbauer/ocpp-manager:latest .
- name: Push Docker image
run: |
docker push ghcr.io/davbauer/ocpp-manager:latest