From 587918136e424c0bea529c727174d979f479825a Mon Sep 17 00:00:00 2001 From: Max P Date: Wed, 14 Aug 2024 19:58:49 +0200 Subject: [PATCH] Disable file uploads in release action Commented out the file uploads section in the CreateRelease GitHub Action workflow. This prevents specified files from being included in the release, likely streamlining the release process or addressing issues with file attachments. --- .github/workflows/CreateRelease.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CreateRelease.yml b/.github/workflows/CreateRelease.yml index a5d1ebc..3bfab7c 100644 --- a/.github/workflows/CreateRelease.yml +++ b/.github/workflows/CreateRelease.yml @@ -87,11 +87,11 @@ jobs: tag_name: ${{ env.VERSION }} name: Release ${{ env.VERSION }} body_path: release_notes.md - files: | - ./dist/** - ./README.md - ./LICENSE - ./package.json - ./tsconfig.json + # files: | + # ./dist/** + # ./README.md + # ./LICENSE + # ./package.json + # ./tsconfig.json env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}