-
-
Notifications
You must be signed in to change notification settings - Fork 33
37 lines (31 loc) · 1.19 KB
/
docker-dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Docker Image DEV CI
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
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.${{ github.run_number }}-beta-linux .
docker push fbarresi/softplc:1.2.${{ github.run_number }}-beta-linux
working-directory: ./SoftPlc
- name: Build Docker arm
run: |
docker build -f Docker/arm/Dockerfile -t fbarresi/softplc:1.2.${{ github.run_number }}-beta-arm .
docker push fbarresi/softplc:1.2.${{ github.run_number }}-beta-arm
working-directory: ./SoftPlc
- name: Build Docker windows
run: |
docker build -f Docker/windows/Dockerfile -t fbarresi/softplc:1.2.${{ github.run_number }}-beta-win .
docker push fbarresi/softplc:1.2.${{ github.run_number }}-beta-win
working-directory: ./SoftPlc