File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 - name : Build project
4242 run : uv build
4343
44- - name : Create release tag
45- run : |
46- git config --local user.email "action@github.com"
47- git config --local user.name "GitHub Action"
48- git tag -a "v${{ github.event.inputs.version }}" -m "Version ${{ github.event.inputs.version }}"
49- git push origin "v${{ github.event.inputs.version }}"
50-
5144 - name : Upload wheels
5245 uses : actions/upload-artifact@v4
5346 with :
6558 id-token : write
6659 contents : write # Needed for tagging
6760 steps :
61+ - name : Checkout code
62+ uses : actions/checkout@v4
63+ with :
64+ fetch-tags : true
65+ fetch-depth : 100
66+
67+ - name : Create release tag
68+ run : |
69+ git config --local user.email "action@github.com"
70+ git config --local user.name "GitHub Action"
71+ git tag -a "v${{ github.event.inputs.version }}" -m "Version ${{ github.event.inputs.version }}"
72+ git push origin "v${{ github.event.inputs.version }}"
73+
6874 - name : Download wheels
6975 uses : actions/download-artifact@v4
7076 with :
You can’t perform that action at this time.
0 commit comments