Skip to content

Add github actions workflow #1

Add github actions workflow

Add github actions workflow #1

Workflow file for this run

name: build catadog
on:
# for testing
pull_request:
branches:
- "**"
# trigger catadog every time a push occurs on any branch
# push:
# branches:
# - "**"
# map of variables that are available to all jobs in the workflow
# env:
# REGISTRY: ghcr.io
# REPO: datadog/catadog
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: build image
run: docker buildx build -t catadog .