From 95b3d17133b93b9da8d2f5e0030bde51dbe6088f Mon Sep 17 00:00:00 2001 From: vadimi Date: Fri, 16 Aug 2024 15:28:38 -0400 Subject: [PATCH] update github actions release --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index daade70..f4389b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,13 +60,13 @@ jobs: id: prep run: | find . -name "grpc-client-cli*" -type f -exec chmod +x {} \; - echo ::set-output name=tags::${GITHUB_REF#refs/tags/v} + echo "tags=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT - uses: ncipollo/release-action@v1 with: - artifacts: "pkg/grpc-client-cli*" + artifacts: "dist/grpc-client-cli*" tag: ${{ github.ref }} - name: ${{ github.ref }} + name: ${{ steps.prep.outputs.tags }} body: | v${{ steps.prep.outputs.tags }} draft: false