Skip to content

Commit

Permalink
added ci for image
Browse files Browse the repository at this point in the history
  • Loading branch information
Geert van Geest committed Nov 10, 2021
1 parent 217f9b6 commit 1fa14e1
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 42 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: build and push CI

on:
workflow_dispatch:
push:
tags:
- 'v*.*'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
geertvangeest/ngs-variants-jupyter
# generate Docker tags based on the following events/attributes
tags: |
type=semver,pattern={{major}}.{{minor}}
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
context: ./Docker
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

42 changes: 0 additions & 42 deletions .github/workflows/push_to_gh_packages.yml

This file was deleted.

0 comments on commit 1fa14e1

Please sign in to comment.