From b745f93d501946fcf0946ba6cbc33ebe7c9c738e Mon Sep 17 00:00:00 2001 From: "Patrik J. Braun" Date: Sat, 10 Dec 2022 19:44:30 +0100 Subject: [PATCH] Update build.yml Following: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00ebf50d..2e843448 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -104,7 +104,7 @@ jobs: steps: - name: Set tag id: vars - run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10}) && echo ::set-output name=type::$(echo ${GITHUB_REF:5}) + run: echo "{name}={tag::$(echo ${GITHUB_REF:10})}" >> $GITHUB_OUTPUT && echo "{name}={tag::$(echo ${GITHUB_REF:5})}" >> $GITHUB_OUTPUT - name: Checkout uses: actions/checkout@v3 - uses: actions/download-artifact@v3