From d8769854c3ff11667d0c3198b212ca285bfd46ce Mon Sep 17 00:00:00 2001 From: Aamir Azad Date: Sun, 16 Jun 2024 14:37:10 +0530 Subject: [PATCH] ci: simplify release action --- .github/workflows/prepare-release.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 4b5772e..2d3f977 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -22,22 +22,6 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Install dependencies - uses: pnpm/action-setup@v4 - with: - run_install: true - - - name: Build project - run: SKIP_ENV_VALIDATION=1 pnpm run build - - - name: Set up Git - run: | - git config user.name "Aamir Azad" - git config user.email "aamirmazad@gmail.com" - - name: Get tag id: get_tag run: | @@ -48,7 +32,6 @@ jobs: - name: Create release uses: softprops/action-gh-release@v2 with: - files: ./build/* tag_name: ${{ steps.get_tag.outputs.version }} name: v${{ steps.get_tag.outputs.version }} # Automatically generate release notes based on commits