Skip to content

Commit 548379d

Browse files
authored
Update release-to-env.yaml
1 parent 83c45c7 commit 548379d

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/release-to-env.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,17 @@ jobs:
1010
- uses: actions/checkout@master
1111
- run: |
1212
echo ${{ toJSON(github.event) }}
13-
- name: Release
14-
uses: softprops/action-gh-release@v1
13+
- name: Create Release
14+
id: create_release
15+
uses: actions/create-release@v1
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
1518
with:
1619
tag_name: ${{ github.event.client_payload.tag }}
20+
release_name: ${{ github.event.client_payload.tag }}
21+
body: |
22+
Changes in this Release
23+
- First Change
24+
- Second Change
25+
draft: false
1726
prerelease: ${{ github.event.client_payload.prerelease }}
18-
env:
19-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)