From 68ea2db18e445e962a74a24a4e04b135e3e3c558 Mon Sep 17 00:00:00 2001 From: chaos-zhu Date: Fri, 16 Aug 2024 13:20:39 +0800 Subject: [PATCH] =?UTF-8?q?:construction=5Fworker:=20=E7=9B=91=E6=8E=A7?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E8=87=AA=E5=8A=A8=E5=8C=96=E6=9E=84?= =?UTF-8?q?=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/client-builder.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/client-builder.yml b/.github/workflows/client-builder.yml index 445be06..3d1f738 100644 --- a/.github/workflows/client-builder.yml +++ b/.github/workflows/client-builder.yml @@ -41,14 +41,18 @@ jobs: run: npm run pkglinux:arm64 working-directory: client + - name: Set tag name + id: tag_name + run: echo "TAG_NAME=client-$(date +'%Y-%m-%d')" >> $GITHUB_ENV + - name: Create Release id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} + tag_name: ${{ env.TAG_NAME }} + release_name: ${{ env.TAG_NAME }} draft: false prerelease: false