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: |