We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c65a3a commit 8a3584bCopy full SHA for 8a3584b
1 file changed
.github/workflows/uv-python.yml
@@ -6,7 +6,11 @@ on:
6
jobs:
7
build:
8
runs-on: windows-latest
9
-
+
10
+ # 👇 権限を追加!
11
+ permissions:
12
+ contents: write # Release作成に必要
13
14
steps:
15
- name: Check out code
16
uses: actions/checkout@v5
@@ -52,7 +56,7 @@ jobs:
52
56
*This release is automatically updated on every push*
53
57
files: |
54
58
./Python_Embeddable.zip
55
- overwrite: true
59
+ # 👇 overwriteパラメータを削除(同じtag_nameを指定すれば自動的に更新される)
60
make_latest: true
61
env:
62
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments