Skip to content

Commit

Permalink
jbang v0.87.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jreleaserbot authored and runner committed Jan 21, 2022
1 parent 4fdc07c commit a0b6d06
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.86.0"
LABEL "org.opencontainers.image.revision"="ba4f82bcea3dcd94ec94769654213b62efc1cb12"
LABEL "org.opencontainers.image.version"="0.87.0"
LABEL "org.opencontainers.image.revision"="21140dc766c361b01314da70f89d6b439c85de01"


COPY assembly/* /

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

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.86.0/bin"
ENV PATH="${PATH}:/jbang-0.87.0/bin"

ADD ./entrypoint /bin/entrypoint

ENV SCRIPTS_HOME /scripts
ENV JBANG_VERSION 0.86.0
ENV JBANG_VERSION 0.87.0

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.86.0"
LABEL "org.opencontainers.image.revision"="ba4f82bcea3dcd94ec94769654213b62efc1cb12"
LABEL "org.opencontainers.image.version"="0.87.0"
LABEL "org.opencontainers.image.revision"="21140dc766c361b01314da70f89d6b439c85de01"


RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.86.0/jbang-0.86.0.zip" --output jbang-0.86.0.zip && \
unzip jbang-0.86.0.zip && \
rm jbang-0.86.0.zip && \
chmod +x jbang-0.86.0/bin/jbang
RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.87.0/jbang-0.87.0.zip" --output jbang-0.87.0.zip && \
unzip jbang-0.87.0.zip && \
rm jbang-0.87.0.zip && \
chmod +x jbang-0.87.0/bin/jbang

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.86.0/bin"
ENV PATH="${PATH}:/jbang-0.87.0/bin"

ENTRYPOINT ["/jbang-0.86.0/bin/jbang"]
ENTRYPOINT ["/jbang-0.87.0/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@v0.86.0
uses: jbangdev/jbang-action@v0.87.0
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.86.0'
image: 'docker://ghcr.io/jbangdev/jbang-action:0.87.0'
Binary file not shown.

0 comments on commit a0b6d06

Please sign in to comment.