Skip to content

Commit

Permalink
jbang v0.106.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jreleaserbot authored and runner committed Apr 1, 2023
1 parent 096a96d commit 06047ab
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.106.0"
LABEL "org.opencontainers.image.revision"="010a613d9921003f807d8de5dd62e57e74850c3b"
LABEL "org.opencontainers.image.version"="0.106.1"
LABEL "org.opencontainers.image.revision"="8516294243004f4c0286ae578cbe964c76f5fce3"


COPY assembly/* /

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

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.106.0/bin"
ENV PATH="${PATH}:/jbang-0.106.1/bin"

ADD ./entrypoint /bin/entrypoint

ENV SCRIPTS_HOME /scripts
ENV JBANG_VERSION 0.106.0
ENV JBANG_VERSION 0.106.1
ENV JBANG_PATH=/jbang/bin

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.106.0"
LABEL "org.opencontainers.image.revision"="010a613d9921003f807d8de5dd62e57e74850c3b"
LABEL "org.opencontainers.image.version"="0.106.1"
LABEL "org.opencontainers.image.revision"="8516294243004f4c0286ae578cbe964c76f5fce3"


RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.106.0/jbang-0.106.0.zip" --output jbang-0.106.0.zip && \
unzip jbang-0.106.0.zip && \
rm jbang-0.106.0.zip && \
chmod +x jbang-0.106.0/bin/jbang
RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.106.1/jbang-0.106.1.zip" --output jbang-0.106.1.zip && \
unzip jbang-0.106.1.zip && \
rm jbang-0.106.1.zip && \
chmod +x jbang-0.106.1/bin/jbang

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.106.0/bin"
ENV PATH="${PATH}:/jbang-0.106.1/bin"

ENTRYPOINT ["/jbang-0.106.0/bin/jbang"]
ENTRYPOINT ["/jbang-0.106.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@v0.106.0
uses: jbangdev/jbang-action@v0.106.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.106.0'
image: 'docker://ghcr.io/jbangdev/jbang-action:0.106.1'
Binary file not shown.

0 comments on commit 06047ab

Please sign in to comment.