Skip to content

Commit

Permalink
Add GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wederbn committed Jul 31, 2024
1 parent 47cc2bf commit f60452c
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/dockerhub.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Push docker images to Dockerhub

on:
push:
branches: main
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 of qc-script-splitter
if: ${{ steps.vars.outputs.tag == 'main' }}
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: planqk/qc-script-splitter:latest

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

0 comments on commit f60452c

Please sign in to comment.