From 02861c633606e60cb631099fda8779b965cc027b Mon Sep 17 00:00:00 2001 From: Daniel Perrefort Date: Wed, 28 Aug 2024 16:02:36 -0400 Subject: [PATCH] Add permissions to Release workflow for publishing docker packages Migrating to PyPi trusted publishing in #399 required manually specifying permissions in #401. The latter PR inadvertently removed permissions for publishing docker packages --- .github/workflows/Release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index b23c428f..e533644f 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -42,5 +42,7 @@ jobs: secrets: inherit permissions: id-token: write + contents: read + packages: write with: version: ${{needs.version.outputs.version}}