Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhendricks00 authored Oct 22, 2024
1 parent c025e47 commit 3a7ae1c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:
workflow_dispatch: # This allows you to manually trigger the workflow from GitHub UI

permissions:
contents: read
releases: write
contents: write # Grants write access to the repository content (including releases)

jobs:
build-and-release:
Expand Down Expand Up @@ -42,7 +41,6 @@ jobs:
awk "/^## \[$VERSION\]/, /^## \[/" CHANGELOG.md >> release_notes.md
if ! grep -q "## \[$VERSION\]" release_notes.md; then
cat RELEASE.HEAD.md >> release_notes.md
fi
- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit 3a7ae1c

Please sign in to comment.