RF-Swift/.github/workflows/sdr_full_docker-image.yml

25 lines
580 B
YAML

name: Docker Image CI - SDR full
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the core image
run: docker build . --file Dockerfiles/SDR/corebuild.docker --tag corebuild:latest
- name: Build the light stage for SDR
run: docker build . --file Dockerfiles/SDR/sdr_light.docker --tag sdr_light:latest
- name: Build the full SDR image
run: docker build . --file Dockerfiles/SDR/sdr_full.docker --tag sdr_full:latest