Develop #1
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: Docker Image DEV CI | |
on: | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker linux | |
run: | | |
docker build -f Docker/linux-x64/Dockerfile -t fbarresi/softplc:1.2-beta${{ github.run_number }}-linux . | |
working-directory: ./SoftPlc | |
- name: Build Docker arm | |
run: | | |
docker build -f Docker/arm/Dockerfile -t fbarresi/softplc:1.2-beta${{ github.run_number }}-arm . | |
working-directory: ./SoftPlc | |
- name: Build Docker windows | |
run: | | |
docker build -f Docker/windows/Dockerfile -t fbarresi/softplc:1.2-beta${{ github.run_number }}-win . | |
working-directory: ./SoftPlc | |