Skip to content

Commit 1b34bd2

Browse files
committed
Fix GH_TOKEN name
1 parent 447cc6e commit 1b34bd2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build_arm_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ jobs:
7979
run: |
8080
gh release upload ${{ github.ref_name }} dist/*.whl --clobber
8181
env:
82-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
82+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
8383
- name: Upload libchdb.so to release
8484
if: startsWith(github.ref, 'refs/tags/v')
8585
run: |
8686
cp programs/local/chdb.h chdb.h
8787
tar -czvf linux-aarch64-libchdb.tar.gz libchdb.so chdb.h
8888
gh release upload ${{ github.ref_name }} linux-aarch64-libchdb.tar.gz --clobber
8989
env:
90-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
90+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
9191
- uses: actions/upload-artifact@v3
9292
with:
9393
path: |

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
run: |
148148
gh release upload ${{ github.ref_name }} dist/*.whl --clobber
149149
env:
150-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
150+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
151151
- name: Packege libchdb.so
152152
if: matrix.python-version == '3.12'
153153
run: |
@@ -158,7 +158,7 @@ jobs:
158158
run: |
159159
gh release upload ${{ github.ref_name }} linux-x86_64-libchdb.tar.gz --clobber
160160
env:
161-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
161+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
162162
- uses: actions/upload-artifact@v3
163163
with:
164164
path: |
@@ -305,7 +305,7 @@ jobs:
305305
run: |
306306
gh release upload ${{ github.ref_name }} dist/*.whl --clobber
307307
env:
308-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
308+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
309309
- name: Packege libchdb.so
310310
if: matrix.python-version == '3.12'
311311
run: |
@@ -316,7 +316,7 @@ jobs:
316316
run: |
317317
gh release upload ${{ github.ref_name }} macos-x86_64-libchdb.tar.gz --clobber
318318
env:
319-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
319+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
320320
- uses: actions/upload-artifact@v3
321321
with:
322322
path: |

0 commit comments

Comments
 (0)