Add github actions workflow #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |