Skip to content

Commit 7bde415

Browse files
authored
Update release creation action
1 parent 76674f0 commit 7bde415

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/sdk-release.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
name: SDK Release Creation
1111
runs-on: ubuntu-latest
1212
permissions:
13-
packages: write
1413
contents: write
1514
steps:
1615
- name: Checkout code
@@ -21,17 +20,10 @@ jobs:
2120
- name: Prepare repository
2221
run: |
2322
git config --global --add safe.directory /github/workspace
24-
- name: Create Changelog
25-
uses: scottbrenner/generate-changelog-action@master
26-
id: changelog
27-
env:
28-
REPO: ${{ github.repository }}
2923
- name: Create Release
3024
id: create_release
3125
uses: softprops/action-gh-release@v2
3226
with:
3327
tag_name: ${{ github.ref_name }}
3428
name: Release ${{ github.ref_name }}
35-
token: ${{ secrets.GITHUB_TOKEN }}
36-
body: |
37-
${{ steps.changelog.outputs.changelog }}
29+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)