Skip to content

Commit

Permalink
ci: fix deprecation of set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Mar 24, 2023
1 parent 580ae79 commit 3ffe6d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
):
publishing = "true"
print("Publishing chart")
print(f"::set-output name=publishing::{publishing}")
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
f.write(f"publishing={publishing}\n")
- name: Set up QEMU (for docker buildx)
uses: docker/setup-qemu-action@v2
Expand Down

0 comments on commit 3ffe6d7

Please sign in to comment.