Merge branch 'main' of github.com:PentHertz/RF-Swift

This commit is contained in:
FlUxIuS 2024-05-21 23:21:53 +02:00
commit f425662991
1 changed files with 28 additions and 0 deletions

28
.github/workflows/docker-image.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the full Docker image
run: docker build . --file Dockerfile --tag rfswift_full:$(date +%s)
- name: Build the sdr_full Docker image
run: docker build . --file sdr_full.docker --tag rfswift_sdrfull:$(date +%s)
- name: Build the sdr_light Docker image
run: docker build . --file sdr_light.docker --tag rfswift_sdrfull:$(date +%s)
- name: Build the Wi-Fi Docker image
run: docker build . --file wifi.docker --tag rfswift_wifi:$(date +%s)
- name: Build the Bluetooth Docker image
run: docker build . --file wifi.docker --tag rfswift_bluetooth:$(date +%s)
- name: Build the RFID Docker image
run: docker build . --file rfid.docker --tag rfswift_rfid:$(date +%s)