Skip to content

Workflow file for this run

name: publish
on: [push]
jobs:
publish-test-docker-image:

Check failure on line 4 in .github/workflows/workflows.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflows.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: Build the test-docker Docker image
run: |
docker build . --tag ghcr.io/BioGenies/imputomics:docker_test
docker run ghcr.io/BioGenies/imputomics:docker_test
docker push ghcr.io/BioGenies/imputomics:docker_test