We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da9f564 commit f3e46d6Copy full SHA for f3e46d6
.github/workflows/publish_pypi.yml
@@ -12,14 +12,12 @@ jobs:
12
permissions:
13
id-token: write
14
steps:
15
- - name: Print release event details (debug)
16
- run: |
17
- echo "Release Tag: ${{ github.event.release.tag_name }}"
18
- echo "Release Name: ${{ github.event.release.name }}"
19
- echo "Release Body: ${{ github.event.release.body }}"
+ - name: Checkout code
+ uses: actions/checkout@v4
20
- name: Download build artifact
21
uses: actions/download-artifact@v4
22
with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}
23
name: dist
24
path: ./dist/
25
- name: Publish
0 commit comments