Skip to content

Commit

Permalink
jbang v0.85.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jreleaserbot authored and runner committed Dec 28, 2021
1 parent 1222a67 commit ff61456
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ LABEL "org.opencontainers.image.title"="jbang"
LABEL "org.opencontainers.image.description"="Unleash the power of Java"
LABEL "org.opencontainers.image.url"="https://jbang.dev"
LABEL "org.opencontainers.image.licenses"="MIT"
LABEL "org.opencontainers.image.version"="0.85.0"
LABEL "org.opencontainers.image.revision"="df5f25c15ba7fe66823cb19044d521639212b9d8"
LABEL "org.opencontainers.image.version"="0.85.1"
LABEL "org.opencontainers.image.revision"="4370e09d63e595f93838fff79b9b617051d97ff1"


COPY assembly/* /

RUN jar xf jbang-0.85.0.zip && \
rm jbang-0.85.0.zip && \
RUN jar xf jbang-0.85.1.zip && \
rm jbang-0.85.1.zip && \
mv jbang-* jbang && \
chmod +x jbang/bin/jbang

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.85.0/bin"
ENV PATH="${PATH}:/jbang-0.85.1/bin"

ADD ./entrypoint /bin/entrypoint

ENV SCRIPTS_HOME /scripts
ENV JBANG_VERSION 0.85.0
ENV JBANG_VERSION 0.85.1

VOLUME /scripts

Expand Down
16 changes: 8 additions & 8 deletions Dockerfile-remote
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ LABEL "org.opencontainers.image.title"="jbang"
LABEL "org.opencontainers.image.description"="Unleash the power of Java"
LABEL "org.opencontainers.image.url"="https://jbang.dev"
LABEL "org.opencontainers.image.licenses"="MIT"
LABEL "org.opencontainers.image.version"="0.85.0"
LABEL "org.opencontainers.image.revision"="df5f25c15ba7fe66823cb19044d521639212b9d8"
LABEL "org.opencontainers.image.version"="0.85.1"
LABEL "org.opencontainers.image.revision"="4370e09d63e595f93838fff79b9b617051d97ff1"


RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.85.0/jbang-0.85.0.zip" --output jbang-0.85.0.zip && \
unzip jbang-0.85.0.zip && \
rm jbang-0.85.0.zip && \
chmod +x jbang-0.85.0/bin/jbang
RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.85.1/jbang-0.85.1.zip" --output jbang-0.85.1.zip && \
unzip jbang-0.85.1.zip && \
rm jbang-0.85.1.zip && \
chmod +x jbang-0.85.1/bin/jbang

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.85.0/bin"
ENV PATH="${PATH}:/jbang-0.85.1/bin"

ENTRYPOINT ["/jbang-0.85.0/bin/jbang"]
ENTRYPOINT ["/jbang-0.85.1/bin/jbang"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
restore-keys: |
$-jbang-
- name: jbang
uses: jbangdev/jbang-action@0.85.0
uses: jbangdev/jbang-action@0.85.1
with:
script: createissue.java
scriptargs: "my world"
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ inputs:
required: false
runs:
using: 'docker'
image: 'docker://ghcr.io/jbangdev/jbang-action:0.85.0'
image: 'docker://ghcr.io/jbangdev/jbang-action:0.85.1'
Binary file not shown.

0 comments on commit ff61456

Please sign in to comment.