Merge pull request #6449 from Kilo-Org/fix/publish-gh-repo-undefined

fix(ci): add GH_REPO env var to publish workflow steps
This commit is contained in:
Catriel Müller
2026-02-27 11:16:33 -03:00
committed by GitHub
+4
View File
@@ -50,6 +50,7 @@ jobs:
./script/version.ts
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
KILO_BUMP: ${{ inputs.bump }}
KILO_VERSION: ${{ inputs.version }}
KILO_API_KEY: ${{ secrets.KILO_API_KEY }}
@@ -78,6 +79,7 @@ jobs:
KILO_VERSION: ${{ needs.version.outputs.version }}
KILO_RELEASE: ${{ needs.version.outputs.release }}
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
- uses: actions/upload-artifact@v4
with:
@@ -115,6 +117,7 @@ jobs:
env:
CLI_DIST_DIR: ../../packages/opencode/dist
KILO_VERSION: ${{ needs.build-cli.outputs.version }}
GH_REPO: ${{ github.repository }}
- uses: actions/upload-artifact@v4
with:
@@ -312,6 +315,7 @@ jobs:
env:
KILO_VERSION: ${{ needs.version.outputs.version }}
KILO_RELEASE: ${{ needs.version.outputs.release }}
GH_REPO: ${{ github.repository }}
AUR_KEY: ${{ secrets.AUR_KEY }}
GITHUB_TOKEN: ${{ steps.committer.outputs.token }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}