Enhance Docker Action: Add curl and jq to Dockerfile, update action.yaml inputs, and improve entrypoint.sh with error handling and release management logic.

This commit is contained in:
2026-06-25 09:08:44 +00:00
parent 609bf90842
commit 3bf8cab832
3 changed files with 178 additions and 19 deletions
+1 -2
View File
@@ -1,10 +1,9 @@
FROM alpine:latest
# 安裝必要的工具
RUN apk add --no-cache --no-check-certificate bash
RUN apk add --no-cache --no-check-certificate bash curl jq
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]