mirror of
https://github.com/zhigang1992/actions.git
synced 2026-01-12 08:53:47 +08:00
* Create a simple status update with curl * Add some lint and a new entrypoint.sh * Use key-value rather than json resultfile * Switch to pure shell * Remove unused line * Verbose it * Correct way of getting deployment-id * Use json in statusupdate * string interpolation * Clean up and lint it * Rename to github-deploy * Add licenses and README
20 lines
459 B
Docker
20 lines
459 B
Docker
FROM alpine
|
|
|
|
LABEL "name"="deploystatus"
|
|
LABEL "maintainer"="Unacast <developers+github@unacast.com>"
|
|
LABEL "version"="1.0.0"
|
|
|
|
LABEL "com.github.actions.name"="Deploy status"
|
|
LABEL "com.github.actions.description"="Create a deploy status"
|
|
LABEL "com.github.actions.icon"="upload"
|
|
LABEL "com.github.actions.color"="green"
|
|
|
|
RUN mkdir /deploy-scripts
|
|
|
|
COPY ./bin /deploy-scripts/bin
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD [""]
|