File tree Expand file tree Collapse file tree 3 files changed +4
-20
lines changed
Expand file tree Collapse file tree 3 files changed +4
-20
lines changed Original file line number Diff line number Diff line change 11# Container image that runs your code
2- FROM ubuntu:bionic
2+ FROM ubuntu:noble
33
44# Copies your code file from your action repository to the filesystem path `/` of the container
55COPY entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ pushd ${download_folder}
1111curl -o sdk-${SDK_VERSION} .zip https://s3-eu-west-1.amazonaws.com/urplus-developer-site/sdk/sdk-${SDK_VERSION} .zip
1212mkdir sdk
1313unzip -q sdk-${SDK_VERSION} .zip -d sdk
14- if [ " $SDK_MAJOR " -eq 1 ] && [ " $SDK_MINOR " -lt 10 ]; then
15- cd sdk
16- else
14+ if [ " $SDK_MAJOR " -eq 1 ] && [ " $SDK_MINOR " -eq 10 ]; then
1715 cd sdk/URCap_SDK-${SDK_VERSION}
16+ else
17+ cd sdk
1818fi
1919./install.sh
2020
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments