Skip to content

Add HTSGET error-response content for debugging #6

Add HTSGET error-response content for debugging

Add HTSGET error-response content for debugging #6

Workflow file for this run

name: Docker image
on: [ push, workflow_dispatch ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
file: Dockerfile.dind
tags: ghcr.io/${{ github.repository }}:latest
platforms: linux/amd64,linux/arm64