Skip to content

Commit d28f245

Browse files
committed
fix token
1 parent 8bbe080 commit d28f245

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/upload-llvm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333

3434
- name: Recreate release with artifacts
3535
env:
36-
GH_TOKEN: ${{ secrets.LLVM_UPLOAD }}
36+
GH_TOKEN: ${{ github.token }}
37+
# GH_TOKEN: ${{ secrets.LLVM_UPLOAD }}
3738
TARGET_REPO: clice-io/clice-llvm
3839
run: python3 scripts/upload-llvm.py "${{ inputs.version }}" "${TARGET_REPO}" "${{ inputs.workflow_id }}"

pixi.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
name = "clice"
33
version = "0.1.0"
44
description = "A next-generation C++ language server for modern C++"
5-
authors = ["ykiko <ykikoykikoykiko@gmail.com>"]
5+
authors = [
6+
"ykiko <ykikoykikoykiko@gmail.com>",
7+
"clice contributors <clice@clice.io>",
8+
]
69

710
license = "Apache-2.0"
811
license-file = "LICENSE"
@@ -48,7 +51,11 @@ package = ["test", "package"]
4851
cmd = ["python3", "scripts/build-llvm.py"]
4952

5053
[tasks.upload-llvm]
51-
args = ["workflow_id", "llvm_version"]
54+
args = [
55+
"workflow_id",
56+
"llvm_version",
57+
{ "name" = "branch", default = "main" },
58+
]
5259
cmd = [
5360
"gh", "workflow", "run", "upload-llvm.yml",
5461
"--ref", "introduce-pixi",

0 commit comments

Comments
 (0)