This repository was archived by the owner on Apr 1, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -25,18 +25,18 @@ if [ ! -z "$LAST_VERSION" ]; then
25
25
echo -e " \e[1;36mCurrent tag is a semantic version. Tagged image will be published.\e[0m\n"
26
26
27
27
# 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
29
29
30
30
# Publish tagged image
31
- echo ::set-env name= PUBLISH_RELEASE_VERSION:: $( echo true)
31
+ echo " PUBLISH_RELEASE_VERSION= true" >> $GITHUB_ENV
32
32
33
33
else
34
34
35
35
# Print information
36
36
echo -e " \e[1;36mCurrent tag is not a semantic version. Tagged image will not be published.\e[0m\n"
37
37
38
38
# Don't publish tagged image
39
- echo ::set-env name= PUBLISH_RELEASE_VERSION:: $( echo false)
39
+ echo " PUBLISH_RELEASE_VERSION= false" >> $GITHUB_ENV
40
40
41
41
fi
42
42
46
46
echo -e " \n\e[1;36mNo release has been found, tagged version will not be published.\e[0m\n"
47
47
48
48
# Don't publish tagged image
49
- echo ::set-env name= PUBLISH_RELEASE_VERSION:: $( echo false)
49
+ echo " PUBLISH_RELEASE_VERSION= false" >> $GITHUB_ENV
50
50
51
51
fi
Original file line number Diff line number Diff line change 1
1
# Base image
2
- FROM paveloom/binder-base:0.1.2
2
+ FROM paveloom/binder-base:0.1.3
3
3
4
4
# Meta information
5
5
LABEL maintainer="Pavel Sobolev (https://github.com/Paveloom)"
6
- LABEL version="0.1.1 "
6
+ LABEL version="0.1.2 "
7
7
LABEL description="Basically, `paveloom/binder-base` + Julia."
8
8
LABEL github-repository="https://github.com/paveloom-d/binder-julia"
9
9
LABEL docker-repository="https://hub.docker.com/r/paveloom/binder-julia"
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ description, see under the spoiler:
18
18
<li >
19
19
Base image:
20
20
<a href="https://github.com/paveloom-d/binder-base">paveloom/binder-base</a>
21
- (0.1.2 )
21
+ (0.1.3 )
22
22
</li >
23
- <li >Julia (1.5.1) </li >
23
+ <li >Julia (1.5.2): </li >
24
24
<ul >
25
- <li>Packages</li>
25
+ <li>Packages: </li>
26
26
<ul>
27
27
<li><a href="https://github.com/JuliaLang/IJulia.jl">IJulia.jl</a></li>
28
28
<ul>
@@ -41,6 +41,7 @@ FROM paveloom/binder-julia:tag
41
41
42
42
where the ` tag ` is one of the following:
43
43
44
+ * [ 0.1.2] ( https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.2 )
44
45
* [ 0.1.1] ( https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.1 )
45
46
* [ 0.1.0] ( https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.0 )
46
47
Original file line number Diff line number Diff line change 1
1
# Base image
2
- FROM paveloom/binder-julia:0.1.1
2
+ FROM paveloom/binder-julia:0.1.2
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ echo '\e[1;36m> Creating a hidden folder for the user...\e[0m'
6
6
sudo mkdir -p /usr/other/$USER && sudo chgrp -R $USER /usr/other/$USER && sudo chmod -R g+w /usr/other/$USER
7
7
8
8
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
10
10
11
11
echo ' \e[1;36m> Extracting the tarball...\e[0m'
12
12
tar -xf /usr/other/$USER /julia/julia* .tar.gz -C /usr/other/$USER /julia --strip-components 1
You can’t perform that action at this time.
0 commit comments