Skip to content

Commit 1a8eef6

Browse files
authored
Merge pull request #104 from dokku/josegonzalez-patch-1
chore: remove use of deprecated method for setting ci output values
2 parents 5637cf9 + 7722ebb commit 1a8eef6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
shell: bash
2626
run: |
2727
if [[ "$GITHUB_REF" == *"/pull/"* ]]; then
28-
echo "##[set-output name=branch;]${GITHUB_HEAD_REF#refs/heads/}"
28+
echo "branch=${GITHUB_HEAD_REF#refs/heads/}" >> $GITHUB_OUTPUT
2929
else
30-
echo "##[set-output name=branch;]${GITHUB_REF#refs/heads/}"
30+
echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
3131
fi
3232
id: extract_branch
3333

0 commit comments

Comments
 (0)