From ac71cb41264845a5e42f964e2e06939528a1d3e6 Mon Sep 17 00:00:00 2001 From: Andras Gemes Date: Tue, 25 Apr 2023 22:06:14 +0200 Subject: [PATCH] CI: replace set-output --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 925636d..9eb639f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,11 +37,11 @@ jobs: - name: Get current date id: date - run: echo "::set-output name=date::$(date +'%Y%m%d')" + run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT - name: generate short hash id: vars - run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" + run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Upload weekly build uses: actions/upload-artifact@v3