We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b670b8d + af9d58b commit 980198eCopy full SHA for 980198e
action.yml
@@ -44,7 +44,7 @@ runs:
44
HASH="$( git rev-parse --short HEAD )"
45
46
# Hash is found in what Branch?
47
- FROM="$( git branch --contains "${HASH}" | head -2 | tac | head -1 | sed 's|^*[[:space:]]*||g' | sed 's|)||g' | xargs -n1 | tail -1 | xargs )"
+ FROM="$( git branch --contains "${HASH}" | head -2 | tac | head -1 | sed 's|^*[[:space:]]*||g' | sed 's|)||g' | xargs -n1 | tail -1 | xargs )"
48
49
# How many commits behind FROM branch
50
BEHIND="$( git rev-list --count "${HASH}..${FROM}" )"
@@ -100,7 +100,7 @@ runs:
100
###
101
### Set final output for 'docker-tag'
102
103
- echo "::set-output name=docker-tag::${DOCKER_TAG}"
+ echo "docker-tag=${DOCKER_TAG}" >> $GITHUB_OUTPUT
104
105
106
### Output information
0 commit comments