From 80efad63e0e91bd913ad99e6be699b0fdb7d7dfc Mon Sep 17 00:00:00 2001 From: Ali Najafizadeh Date: Thu, 18 Apr 2024 01:51:27 -0400 Subject: [PATCH] Use a new API for saving states between runs --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 992baa7..fe24e58 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,11 +13,11 @@ jobs: - name: Extract tag version id: tag_version - run: echo ::set-output name=VALUE::${GITHUB_REF#refs/tags/} + run: echo "VALUE=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - name: Extract git commit hash id: git_commit - run: echo ::set-output name=VALUE::$(git rev-list -1 HEAD) + run: echo "VALUE=$(git rev-list -1 HEAD)" >> $GITHUB_OUTPUT - name: Prepare the credentials run: |