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:
12
.github/workflows/CreateRelease.yml
vendored
12
.github/workflows/CreateRelease.yml
vendored
@@ -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 }}
|
||||||
|
Reference in New Issue
Block a user