Fix env var config in docker container (#115) #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |