Skip to content

Commit b22c70b

Browse files
committed
Fix Dockerfile and Release Template
1 parent b17880f commit b22c70b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name-template: "$RESOLVED_VERSION"
1+
name-template: "v$RESOLVED_VERSION"
22
tag-template: "v$RESOLVED_VERSION"
33
categories:
44
- title: "🚀 Features"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN export CGO_ENABLED=0 && go build -o ./yamllint-action .
1919
FROM python:3.13.1-alpine3.19
2020
RUN pip install --no-cache-dir yamllint==1.35.1 && \
2121
adduser --disabled-password --gecos "" --home "/nonexistent" --shell "/sbin/nologin" --no-create-home --uid 10001 appuser
22-
COPY --from=build /yamllint-action/yamllint-action /script_exporter
22+
COPY --from=build /yamllint-action/yamllint-action /yamllint-action
2323
COPY entrypoint.sh /entrypoint.sh
2424
USER appuser:appuser
2525
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)