We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0172d commit 727b3c5Copy full SHA for 727b3c5
.github/workflows/build_dockerfile_on_release.yml
@@ -25,9 +25,9 @@ jobs:
25
id: git-check
26
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
27
- name: Make new Dockerfile for latest release; commit
28
- if: steps.git-check.outputs.modified == 'true'
29
- run: |
30
- REPO_VER=$(cat versions/latest-version.txt | sed 's|v||')
+ if: steps.git-check.outputs.modified == 'true'
+ run: |
+ REPO_VER=$(cat versions/latest-version.txt | sed 's|v||')
31
# # make new dir for new dockerfile;
32
mkdir -pv environments/illumina/${REPO_VER}
33
# cp -v * ${REPO_VER}
0 commit comments