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
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ on:
required: false
default: 'false'

permissions:
contents: write
id-token: write
attestations: write

jobs:
build:
name: Build artifacts (${{ matrix.name }})
runs-on: ${{ matrix.os }}
permissions:
contents: read
actions: write
id-token: write
attestations: write
strategy:
matrix:
include:
Expand Down Expand Up @@ -167,6 +167,9 @@ jobs:
name: Create Release
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
actions: read
# Runs automatically for tagged version pushes, or manually when publish_release is true and a release_tag is supplied.
if: >
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')) ||
Expand Down
Loading