Skip to content
This repository was archived by the owner on Apr 1, 2022. It is now read-only.

Commit 39bf58e

Browse files
author
Pavel Sobolev
authored
(#16) v0.1.2:
* (#15) Bump the versions of the `binder-base` and Julia.
2 parents 5b4da4b + 1ff4ead commit 39bf58e

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.github/scripts/publish-docker.bash

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ if [ ! -z "$LAST_VERSION" ]; then
2525
echo -e "\e[1;36mCurrent tag is a semantic version. Tagged image will be published.\e[0m\n"
2626

2727
# Set environment variable
28-
echo ::set-env name=RELEASE_VERSION::$(echo ${CURRENT_TAG} | sed 's/v//')
28+
echo "RELEASE_VERSION=$(echo ${CURRENT_TAG} | sed 's/v//')" >> $GITHUB_ENV
2929

3030
# Publish tagged image
31-
echo ::set-env name=PUBLISH_RELEASE_VERSION::$(echo true)
31+
echo "PUBLISH_RELEASE_VERSION=true" >> $GITHUB_ENV
3232

3333
else
3434

3535
# Print information
3636
echo -e "\e[1;36mCurrent tag is not a semantic version. Tagged image will not be published.\e[0m\n"
3737

3838
# Don't publish tagged image
39-
echo ::set-env name=PUBLISH_RELEASE_VERSION::$(echo false)
39+
echo "PUBLISH_RELEASE_VERSION=false" >> $GITHUB_ENV
4040

4141
fi
4242

@@ -46,6 +46,6 @@ else
4646
echo -e "\n\e[1;36mNo release has been found, tagged version will not be published.\e[0m\n"
4747

4848
# Don't publish tagged image
49-
echo ::set-env name=PUBLISH_RELEASE_VERSION::$(echo false)
49+
echo "PUBLISH_RELEASE_VERSION=false" >> $GITHUB_ENV
5050

5151
fi

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Base image
2-
FROM paveloom/binder-base:0.1.2
2+
FROM paveloom/binder-base:0.1.3
33

44
# Meta information
55
LABEL maintainer="Pavel Sobolev (https://github.com/Paveloom)"
6-
LABEL version="0.1.1"
6+
LABEL version="0.1.2"
77
LABEL description="Basically, `paveloom/binder-base` + Julia."
88
LABEL github-repository="https://github.com/paveloom-d/binder-julia"
99
LABEL docker-repository="https://hub.docker.com/r/paveloom/binder-julia"

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ description, see under the spoiler:
1818
<li>
1919
Base image:
2020
<a href="https://github.com/paveloom-d/binder-base">paveloom/binder-base</a>
21-
(0.1.2)
21+
(0.1.3)
2222
</li>
23-
<li>Julia (1.5.1)</li>
23+
<li>Julia (1.5.2):</li>
2424
<ul>
25-
<li>Packages</li>
25+
<li>Packages:</li>
2626
<ul>
2727
<li><a href="https://github.com/JuliaLang/IJulia.jl">IJulia.jl</a></li>
2828
<ul>
@@ -41,6 +41,7 @@ FROM paveloom/binder-julia:tag
4141

4242
where the `tag` is one of the following:
4343

44+
* [0.1.2](https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.2)
4445
* [0.1.1](https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.1)
4546
* [0.1.0](https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.0)
4647

binder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Base image
2-
FROM paveloom/binder-julia:0.1.1
2+
FROM paveloom/binder-julia:0.1.2

scripts/user/julia/install-julia.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo '\e[1;36m> Creating a hidden folder for the user...\e[0m'
66
sudo mkdir -p /usr/other/$USER && sudo chgrp -R $USER /usr/other/$USER && sudo chmod -R g+w /usr/other/$USER
77

88
echo '\e[1;36m> Downloading the tarball...\e[0m'
9-
wget https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.1-linux-x86_64.tar.gz -P /usr/other/$USER/julia >/dev/null 2>&1
9+
wget https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.2-linux-x86_64.tar.gz -P /usr/other/$USER/julia >/dev/null 2>&1
1010

1111
echo '\e[1;36m> Extracting the tarball...\e[0m'
1212
tar -xf /usr/other/$USER/julia/julia*.tar.gz -C /usr/other/$USER/julia --strip-components 1

0 commit comments

Comments
 (0)