Skip to content

Commit

Permalink
jbang v0.92.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jreleaserbot authored and runner committed Mar 19, 2022
1 parent e9c4dbf commit e9c8f17
Show file tree
Hide file tree
Showing 6 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.92.0"
LABEL "org.opencontainers.image.revision"="547d08a0a4a9df09d0f039906764145715647143"
LABEL "org.opencontainers.image.version"="0.92.1"
LABEL "org.opencontainers.image.revision"="048a68b522e98b0a498f8bdf4d48807782655027"


COPY assembly/* /

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

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.92.0/bin"
ENV PATH="${PATH}:/jbang-0.92.1/bin"

ADD ./entrypoint /bin/entrypoint

ENV SCRIPTS_HOME /scripts
ENV JBANG_VERSION 0.92.0
ENV JBANG_VERSION 0.92.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.92.0"
LABEL "org.opencontainers.image.revision"="547d08a0a4a9df09d0f039906764145715647143"
LABEL "org.opencontainers.image.version"="0.92.1"
LABEL "org.opencontainers.image.revision"="048a68b522e98b0a498f8bdf4d48807782655027"


RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.92.0/jbang-0.92.0.zip" --output jbang-0.92.0.zip && \
unzip jbang-0.92.0.zip && \
rm jbang-0.92.0.zip && \
chmod +x jbang-0.92.0/bin/jbang
RUN curl -Ls "https://github.com/jbangdev/jbang/releases/download/v0.92.1/jbang-0.92.1.zip" --output jbang-0.92.1.zip && \
unzip jbang-0.92.1.zip && \
rm jbang-0.92.1.zip && \
chmod +x jbang-0.92.1/bin/jbang

VOLUME /scripts

ENV PATH="${PATH}:/jbang-0.92.0/bin"
ENV PATH="${PATH}:/jbang-0.92.1/bin"

ENTRYPOINT ["/jbang-0.92.0/bin/jbang"]
ENTRYPOINT ["/jbang-0.92.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.92.0
uses: jbangdev/jbang-action@v0.92.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.92.0'
image: 'docker://ghcr.io/jbangdev/jbang-action:0.92.1'
Binary file removed assembly/jbang-0.92.0.zip
Binary file not shown.
Binary file added assembly/jbang-0.92.1.zip
Binary file not shown.

0 comments on commit e9c8f17

Please sign in to comment.