Skip to content

Update PMS to 1.41.1.9057 #158

Update PMS to 1.41.1.9057

Update PMS to 1.41.1.9057 #158

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Installing dependencies
run: |
sudo apt update && sudo apt install make -y
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin
- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
- name: Build image
run: make build
- name: Publish image
run: if [[ $(git log --oneline -n1 | grep "Update PMS to" | wc -l) -eq 1 ]]; then make publish; fi