Skip to content

Commit

Permalink
Create dockerhub.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
salmma committed Jun 18, 2021
1 parent 4ae0fa1 commit 29f3400
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Push docker images to Dockerhub

on:
push:
branches: master
tags:
- "v*.*.*"

jobs:
multi:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set output
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push latest qiskit-service
if: ${{ steps.vars.outputs.tag }} == 'master'
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: planqk/qiskit-service:latest

- name: Build and push version of qiskit-service
if: ${{ steps.vars.outputs.tag }} != 'master'
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: planqk/qiskit-service:${{ steps.vars.outputs.tag }}

0 comments on commit 29f3400

Please sign in to comment.