fixed actions for PR #14
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: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build Docker linux | |
run: | | |
docker build -f Docker/linux-x64/Dockerfile -t fbarresi/softplc:1.2-beta${{ github.run_number }}-linux . | |
docker push 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 . | |
docker push 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 . | |
docker push fbarresi/softplc:1.2-beta${{ github.run_number }}-win | |
working-directory: ./SoftPlc | |