This commit is contained in:
Rustem Khusnutdinov
2024-11-28 22:21:51 +03:00
committed by GitHub
parent e5bf143c63
commit 74b6edcf5c
2 changed files with 3 additions and 3 deletions

View File

@@ -14,10 +14,10 @@ COPY src/requirements.txt ./
RUN pip install -r requirements.txt
COPY src/entrypoint /usr/local/bin/
COPY src/docker-entrypoint.sh /usr/local/bin/
COPY src/docker-entrypoint.sh /
COPY src/add-to-wiki /usr/local/bin/
COPY src/default.md.j2 /var/
WORKDIR /workdir
ENTRYPOINT [ "docker-entrypoint.sh" ]
ENTRYPOINT [ "/docker-entrypoint.sh" ]

View File

@@ -61,7 +61,7 @@ inputs:
required: false
runs:
using: docker
image: docker://ghcr.io/getflow/coverage-comment-action:v1
image: Dockerfile
env:
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
COVERAGE_FILE: ${{ inputs.COVERAGE_FILE }}