Skip to content

Optimized Makefile (#255) #118

Optimized Makefile (#255)

Optimized Makefile (#255) #118

Workflow file for this run

name: Build localstorage image
on:
push:
branches: [ "master" ]
env:
# Use docker.io for Docker Hub if empty
REGISTRY: harbor.cloud.pixiuio.com
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login in dockerhub
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_NAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push the localstorage image
run: make image && make push