Skip to content

Commit

Permalink
Update create-release.yml
Browse files Browse the repository at this point in the history
Fixing create-release workflow by adding proper permissions and removing dummy changelog body.
  • Loading branch information
ThatStasGuy authored Feb 16, 2024
1 parent 0bf680c commit b705386
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
on:
push:
# Sequence of patterns matched against refs/tags
branches:
- "main"
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

permissions:
contents: write
pull-requests: read
name: Create Release

jobs:
Expand All @@ -21,9 +25,5 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false

0 comments on commit b705386

Please sign in to comment.