Skip to content

Commit 3ffe6d7

Browse files
committed
ci: fix deprecation of set-output
1 parent 580ae79 commit 3ffe6d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ jobs:
7171
):
7272
publishing = "true"
7373
print("Publishing chart")
74-
print(f"::set-output name=publishing::{publishing}")
74+
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
75+
f.write(f"publishing={publishing}\n")
7576
7677
- name: Set up QEMU (for docker buildx)
7778
uses: docker/setup-qemu-action@v2

0 commit comments

Comments
 (0)