We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4553541 commit 33dd4a6Copy full SHA for 33dd4a6
Dockerfile
@@ -13,6 +13,7 @@ RUN chmod +x .scripts/deploy.sh
13
RUN .scripts/install.sh
14
RUN .scripts/build.sh
15
16
-RUN IFS='/' read -r -a array <<< "$REF" && export PR_NUMBER=array[2]
+RUN echo $REF;
17
+RUN export PR_NUMBER=$(echo $REF | cut -d'/' -f3);echo $PR_NUMBER;
18
19
ENTRYPOINT .scripts/deploy.sh; /bin/bash
0 commit comments