Skip to content

Commit 08c761b

Browse files
committed
update
1 parent 1097e06 commit 08c761b

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/Clivern/pushover-actions"
99
LABEL "homepage"="http://github.com/clivern"
1010
LABEL "maintainer"="Clivern <[email protected]>"
1111

12-
ARG PO_VERSION=0.0.2
12+
ARG PO_VERSION=0.0.3
1313

1414
ENV GO111MODULE=on
1515

@@ -24,4 +24,10 @@ RUN curl -sL https://github.com/Clivern/pushover-actions/releases/download/${PO_
2424
RUN rm LICENSE
2525
RUN rm README.md
2626

27-
ENTRYPOINT ["./pushover-actions"]
27+
COPY entrypoint.sh /app
28+
29+
RUN chmod +x /app/entrypoint.sh
30+
31+
RUN chmod +x /app/pushover-actions
32+
33+
ENTRYPOINT ["/app/entrypoint.sh"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<p align="center">Pushover A Notifications for Github Repository Changes</p>
55
<p align="center">
66
<a href="https://travis-ci.com/Clivern/pushover-actions"><img src="https://travis-ci.com/Clivern/pushover-actions.svg?branch=master"></a>
7-
<a href="https://github.com/Clivern/pushover-actions/releases"><img src="https://img.shields.io/badge/Version-0.0.2-red.svg"></a>
7+
<a href="https://github.com/Clivern/pushover-actions/releases"><img src="https://img.shields.io/badge/Version-0.0.3-red.svg"></a>
88
<a href="https://github.com/Clivern/pushover-actions/blob/master/LICENSE"><img src="https://img.shields.io/badge/LICENSE-Apache--2.0-orange.svg"></a>
99
</p>
1010
</p>

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# action.yml
22
name: 'pushover-actions'
3-
description: 'Open Source Workflow Automation'
3+
description: 'Pushover A Notifications for Github Repository Changes'
44
branding:
55
icon: 'package'
66
color: 'red'

entrypoint.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
/app/pushover-actions

0 commit comments

Comments
 (0)