Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ on:
required: true
type: string

permissions:
contents: write
# Deny everything by default; each job opts into only what it needs.
permissions: {}

jobs:
release:
name: Create GitHub Release
runs-on: ubuntu-latest
permissions:
# Required to create the GitHub Release for the tag.
contents: write
env:
RELEASE_TAG: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tag || github.ref_name }}
steps:
Expand Down
Loading