From ca5215bf565c447f592319fd42ed826f4a6164ce Mon Sep 17 00:00:00 2001 From: Master Mind <70486873+SOH69@users.noreply.github.com> Date: Sat, 1 Jun 2024 22:18:11 +0530 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a529462..c4ac3b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Build and Release on: push: tags: - - 'v*.*.*' # This triggers the workflow on version tags + - 'v*.*.*' jobs: build: @@ -16,7 +16,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v2 with: - node-version: '21.1.0' # You can specify the Node.js version + node-version: '21.1.0' - name: Install dependencies run: npm install @@ -34,7 +34,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} + release_name: ${{ github.ref }} draft: false prerelease: false