Skip to content

Add Edge and Node Type to Topology Template (#107) #27

Add Edge and Node Type to Topology Template (#107)

Add Edge and Node Type to Topology Template (#107) #27

name: Publish on Dockerhub
on:
push:
branches: master
tags:
- "v*.*.*"
- "paper**"
jobs:
docker-publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Extract metadata (tags, labels) for Docker
id: meta-workflow-modeler
uses: docker/metadata-action@v4
with:
images: planqk/workflow-modeler
tags: |
# set latest tag for master branch
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
# set tag when a tag is pushed
type=ref,event=tag
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta-workflow-modeler.outputs.tags }}
labels: ${{ steps.meta-workflow-modeler.outputs.labels }}