File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2020 echo "BASEIMAGE=${{ env.BASEIMAGE }}" >> $GITHUB_OUTPUT
2121 echo "MODNAME=${{ env.MODNAME }}" >> $GITHUB_OUTPUT
2222 # **** If the mod needs to be versioned, set the versioning logic below. Otherwise leave as is. ****
23- MOD_VERSION=$(curl -sL https://julialang.org/downloads/ | sed 's|.*Current stable release: v||' | sed 's| (.*||')
23+ MOD_VERSION=$(curl -sL https://julialang.org/downloads/ | grep 'Current stable release:' | sed 's|.*Current stable release: v||' | sed 's| (.*||')
2424 echo "MOD_VERSION=${MOD_VERSION}" >> $GITHUB_OUTPUT
2525 outputs :
2626 GITHUB_REPO : ${{ steps.outputs.outputs.GITHUB_REPO }}
Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1
22
3- FROM ghcr.io/linuxserver/baseimage-alpine:3.17 as buildstage
3+ FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
44
55ARG MOD_VERSION
66
77RUN \
88 if [ -z "${MOD_VERSION}" ]; then \
99 MOD_VERSION=$(curl -sL https://julialang.org/downloads/ \
10+ | grep 'Current stable release:' \
1011 | sed 's|.*Current stable release: v||' \
1112 | sed 's| (.*||' ); \
1213 fi && \
You can’t perform that action at this time.
0 commit comments