Skip to content

chore: include enrichment plugin code in alerta #246

chore: include enrichment plugin code in alerta

chore: include enrichment plugin code in alerta #246

Workflow file for this run

name: Pull Request Onto Develop
on:
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v5.1
- run: |
docker login --username rudderlabs --password '${{ secrets.DOCKER_HUB_PASSWORD }}'
export VERSION=${{ steps.branch-name.outputs.current_branch }}
docker build --no-cache --build-arg=COMMIT_ID_VALUE="$(git log --format="%H" -n 1)" -t rudderlabs/alerta:$VERSION .
docker push rudderlabs/alerta:$VERSION
name: Docker build and push