Skip to content

feat: this commit introduces .editorconfig to enforce coding styles a… #27

feat: this commit introduces .editorconfig to enforce coding styles a…

feat: this commit introduces .editorconfig to enforce coding styles a… #27

name: build and publish docker image
on:
push:
branches:
- master
jobs:
docker-build-and-push:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: login docker hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: build docker image
run: docker build -t vinderio/federation:latest .
- name: push docker image
run: docker push vinderio/federation:latest