We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eda888b commit 8e484d4Copy full SHA for 8e484d4
2 files changed
.github/workflows/ci.yml
@@ -6,6 +6,9 @@ on:
6
branches:
7
- main
8
9
+permissions:
10
+ contents: read
11
+
12
jobs:
13
quality:
14
runs-on: ubuntu-latest
.github/workflows/publish.yml
@@ -5,6 +5,9 @@ on:
5
tags:
- "v*"
build:
@@ -25,8 +28,6 @@ jobs:
25
28
needs: build
26
29
27
30
environment: pypi
- permissions:
- id-token: write # required for OIDC trusted publishing
31
32
steps:
33
- uses: actions/download-artifact@v4
@@ -36,3 +37,5 @@ jobs:
36
37
38
- name: Publish to PyPI
39
uses: pypa/gh-action-pypi-publish@release/v1
40
+ with:
41
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments