From 66afe808376812cc63becfd6036c2102a239421d Mon Sep 17 00:00:00 2001 From: "Patrik J. Braun" Date: Tue, 1 Aug 2023 23:34:31 +0200 Subject: [PATCH] Update build.yml Updating build.yml. Following: 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 a8f7b6ce..6a3294a9 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 "{tag}={$(echo ${GITHUB_REF:10})}" >> $GITHUB_STATE && echo "{type}={$(echo ${GITHUB_REF:5})}" >> $GITHUB_STATE - name: Checkout uses: actions/checkout@v3 - uses: actions/download-artifact@v3