Skip to content

Merge branch 'master' of https://github.com/sib-swiss/cancer-variants… #9

Merge branch 'master' of https://github.com/sib-swiss/cancer-variants…

Merge branch 'master' of https://github.com/sib-swiss/cancer-variants… #9

Workflow file for this run

name: build and push CI
on:
workflow_dispatch:
push:
tags:
- 'v*.*'
jobs:
docker-vscode:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
geertvangeest/cancer-variants-vscode
# generate Docker tags based on the following events/attributes
tags: |
type=semver,pattern={{major}}.{{minor}}
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
push: true
context: ./Docker/vscode
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
docker-rstudio:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
geertvangeest/cancer-variants-rstudio
# generate Docker tags based on the following events/attributes
tags: |
type=semver,pattern={{major}}.{{minor}}
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
push: true
context: ./Docker/rstudio
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}