Skip to content

Allow for GT to be a nocall if GQ and PL[0] are zero instead of homre… #548

Allow for GT to be a nocall if GQ and PL[0] are zero instead of homre…

Allow for GT to be a nocall if GQ and PL[0] are zero instead of homre… #548

Workflow file for this run

# from: https://docs.github.com/en/actions/publishing-packages/publishing-docker-images
name: Create and publish a Docker image
on:
push:
paths-ignore:
- '**/*.md'
- '**/*.rst'
branches:
- develop
tags:
- v*
pull_request:
paths-ignore:
- '**/*.md'
- '**/*.rst'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and export to Docker
uses: docker/build-push-action@v4
with:
context: .
build-args: os=ubuntu:24.04
load: true
tags: ghcr.io/genomicsdb/genomicsdb:test
- name: Test docker image
run: |
docker run --rm -v ${{github.workspace}}/tests:/opt/tests --entrypoint /opt/tests/docker_test.sh ghcr.io/genomicsdb/genomicsdb:test
- name: Build and push to ghcr.io
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v4
with:
context: .
build-args: os=ubuntu:24.04
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}