Skip to content

repalced opentelemetry java agent with springboot actuator, logback l… #26

repalced opentelemetry java agent with springboot actuator, logback l…

repalced opentelemetry java agent with springboot actuator, logback l… #26

Workflow file for this run

name: Webhooks API Build
on:
workflow_dispatch:
push:
branches:
- main
paths:
- src/Services/Webhooks/webhooks-api/**
- .github/workflows/webhooks-api.yml
env:
SERVICE: webhooks-api
IMAGE: webhooksapi
jobs:
BuildLinux:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build & publish docker images
uses: ./.github/workflows/composite/build-push
with:
service: ${{ env.SERVICE }}
registry_host: ${{ secrets.REGISTRY_HOST }}
registry_endpoint: ${{ secrets.REGISTRY_ENDPOINT }}
image_name: ${{ env.IMAGE }}
registry_username: ${{ secrets.DOCKER_USERNAME }}
registry_password: ${{ secrets.DOCKER_PASSWORD }}
registry_namespace: ${{ secrets.DOCKER_NAMESPACE }}
git_token: ${{ secrets.GIT_TOKEN }}