Skip to content

- fix for #96, #98

- fix for #96, #98 #11

name: Build and Publish
on:
push:
branches: [master, develop]
pull_request:
jobs:
build-and-push-docker-image:
name: Build Docker image and push to repositories
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build image and push to Docker Hub and GitHub Container Registry
uses: docker/build-push-action@v4
with:
context: .
tags: |
openslice/io.openslice.tmf.web:${{ github.ref == 'refs/heads/master' && 'latest' || github.ref == 'refs/heads/develop' && 'nightly' }}
push: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop'}}