mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Fix2
This commit is contained in:
parent
afacc49152
commit
54b049ac22
1 changed files with 5 additions and 1 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
|
@ -16,6 +16,10 @@ jobs:
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
|
- run: |
|
||||||
|
output = $(python3 test/get_changes.py "${{ github.ref }}")
|
||||||
|
echo "::set-output name=changelog::$output"
|
||||||
|
id: set_changelog
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: actions/create-release@v1
|
uses: actions/create-release@v1
|
||||||
|
|
@ -25,7 +29,7 @@ jobs:
|
||||||
tag_name: ${{ github.ref }}
|
tag_name: ${{ github.ref }}
|
||||||
release_name: ${{ github.ref }}
|
release_name: ${{ github.ref }}
|
||||||
body: |
|
body: |
|
||||||
$(python3 test/get_changes.py "${{ github.ref }}")
|
${{ steps.set_changelog.outputs.changelog }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false\
|
prerelease: false\
|
||||||
- name: Upload Release Asset
|
- name: Upload Release Asset
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue