mirror of https://github.com/MISP/misp-docker
19 lines
444 B
YAML
19 lines
444 B
YAML
name: Build the Docker images
|
|
|
|
on:
|
|
# Only trigger the workflow when there is a PR on the master branch
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# checkout the repository in the ubuntu-latest environment
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build the Docker images
|
|
run: docker compose --env-file template.env build
|