Skip to content

no predefined folder for reports #138

no predefined folder for reports

no predefined folder for reports #138

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main", "refactor/v2" ]
tags:
- 'v*'
paths-ignore:
- 'README.md'
- '*.md'
- 'website/**'
- 'docs/**'
pull_request:
branches: [ "main", "refactor/v2" ]
paths-ignore:
- 'README.md'
- '*.md'
- 'website/**'
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set lowercase repository name
id: repo
run: echo "name=$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: |
ghcr.io/${{ steps.repo.outputs.name }}:latest
ghcr.io/${{ steps.repo.outputs.name }}:${{ github.sha }}