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.
This commit is contained in:
2024-08-14 19:58:49 +02:00
parent 1389dfc947
commit 587918136e

View File

@@ -87,11 +87,11 @@ jobs:
tag_name: ${{ env.VERSION }} tag_name: ${{ env.VERSION }}
name: Release ${{ env.VERSION }} name: Release ${{ env.VERSION }}
body_path: release_notes.md body_path: release_notes.md
files: | # files: |
./dist/** # ./dist/**
./README.md # ./README.md
./LICENSE # ./LICENSE
./package.json # ./package.json
./tsconfig.json # ./tsconfig.json
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}