From 4e40a8edb07f9e09e9be3763d84d3674e81bbfa8 Mon Sep 17 00:00:00 2001 From: h3rald Date: Thu, 31 Aug 2023 18:31:06 +0000 Subject: [PATCH] Updating workflow. --- .github/workflows/add-artifacts-to-current-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-artifacts-to-current-release.yml b/.github/workflows/add-artifacts-to-current-release.yml index 4911018..5859fe9 100644 --- a/.github/workflows/add-artifacts-to-current-release.yml +++ b/.github/workflows/add-artifacts-to-current-release.yml @@ -30,7 +30,7 @@ jobs: # Detects OS and provide Nim-friendly OS identifiers - name: Detect current OS id: os - run: echo "::set-output name=id::${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" + run: echo "os=${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" >> $GITHUB_OUTPUT # Checks out the repository - uses: actions/checkout@v2