Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Mar 25, 2020
1 parent 1097e06 commit 08c761b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/Clivern/pushover-actions"
LABEL "homepage"="http://github.com/clivern"
LABEL "maintainer"="Clivern <hello@clivern.com>"

ARG PO_VERSION=0.0.2
ARG PO_VERSION=0.0.3

ENV GO111MODULE=on

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

ENTRYPOINT ["./pushover-actions"]
COPY entrypoint.sh /app

RUN chmod +x /app/entrypoint.sh

RUN chmod +x /app/pushover-actions

ENTRYPOINT ["/app/entrypoint.sh"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<p align="center">Pushover A Notifications for Github Repository Changes</p>
<p align="center">
<a href="https://travis-ci.com/Clivern/pushover-actions"><img src="https://travis-ci.com/Clivern/pushover-actions.svg?branch=master"></a>
<a href="https://github.com/Clivern/pushover-actions/releases"><img src="https://img.shields.io/badge/Version-0.0.2-red.svg"></a>
<a href="https://github.com/Clivern/pushover-actions/releases"><img src="https://img.shields.io/badge/Version-0.0.3-red.svg"></a>
<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>
</p>
</p>
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# action.yml
name: 'pushover-actions'
description: 'Open Source Workflow Automation'
description: 'Pushover A Notifications for Github Repository Changes'
branding:
icon: 'package'
color: 'red'
Expand Down
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

/app/pushover-actions

0 comments on commit 08c761b

Please sign in to comment.