File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 3535 curl https://raw.githubusercontent.com/${{ github.repository }}/${{steps.defs.outputs.release-tag}}/.github/workflows/build_containers.yaml | grep 'amdtag' | awk -F"'" '/amdtag:/ {print $4}' | uniq > /tmp/currtag
3636 RELEASE_R_VER=$(curl https://bioconductor.org/config.yaml | yq e '.r_ver_for_bioc_ver."${{steps.defs.outputs.releasebiocver}}"')
3737 LATEST_TAG=$(cat /tmp/taglist | grep "$RELEASE_R_VER" | sort -n | tail -n 1)
38- CURR_TAG=$(cat /tmp/currtag | sort -n | tail -n 1)
38+ CURR_TAG=$(cat /tmp/currtag | sort -n | tail -n 1 | cut -d'-' -f1 )
3939 echo latest-tag=$LATEST_TAG >> $GITHUB_OUTPUT
4040 if [ "$LATEST_TAG" == "$CURR_TAG" ]; then
4141 echo "Detected '$LATEST_TAG' == '$CURR_TAG' as latest available tag"
You can’t perform that action at this time.
0 commit comments