Skip to content

Write log to file

Write log to file #46

Workflow file for this run

name: Build docker image
on:
push:
branches: [main]
jobs:
docker:
if: github.repository == 'MultiQC/api.multiqc.info'
name: Build + push app docker image
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build / push latest image
uses: docker/build-push-action@v3
with:
push: true
tags: |
ghcr.io/multiqc/apimultiqcinfo:latest
ghcr.io/multiqc/apimultiqcinfo:${{ github.sha }}