Skip to content

Commit

Permalink
Update docker-dev.yml
Browse files Browse the repository at this point in the history
change to better semantic for beta versions
  • Loading branch information
fbarresi committed Feb 10, 2024
1 parent 97b7fc1 commit 2a8caef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:
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
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.${{ github.run_number }}-beta-arm .
docker push fbarresi/softplc:1.2.${{ github.run_number }}-beta-arm
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.${{ github.run_number }}-beta-win .
docker push fbarresi/softplc:1.2.${{ github.run_number }}-beta-win
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

0 comments on commit 2a8caef

Please sign in to comment.