There was an error while loading. Please reload this page.
1 parent a356652 commit a847aa3Copy full SHA for a847aa3
1 file changed
.github/workflows/milestone-publish.yml
@@ -3,6 +3,10 @@
3
4
name: Release new version
5
6
+permissions:
7
+ id-token: write # Required for OIDC
8
+ contents: read
9
+
10
on:
11
milestone:
12
types: [closed]
@@ -20,6 +24,7 @@ jobs:
20
24
with:
21
25
node-version: 26
22
26
registry-url: https://registry.npmjs.org/
27
+ package-manager-cache: false # never use caching in release builds
23
28
- name: Set up Python
29
uses: actions/setup-python@v6
30
@@ -58,7 +63,6 @@ jobs:
58
63
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
64
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
60
65
MILESTONE_VERSION: ${{ github.event.milestone.title }}
61
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
62
66
TWINE_USERNAME: ${{secrets.PYPI_USERNAME}}
67
TWINE_PASSWORD: ${{secrets.PYPI_PASSWORD}}
68
run: |
0 commit comments