Files
Kilo-Org_kilocode/.github/workflows/publish-github-action.yml
Catriel Müller 8a1701ba61 Depot runners (#65)
* refactor: depot runners

* refactor: update image
2026-01-29 16:13:04 +01:00

34 lines
724 B
YAML

name: publish-github-action
on:
workflow_dispatch:
push:
tags:
- "github-v*.*.*"
- "!github-v1"
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
jobs:
publish:
# kilocode_change start - disabled for kilo-cli fork (OpenCode GitHub Action publishing)
if: false
# kilocode_change end
runs-on: depot-ubuntu-24.04-4
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- name: Publish
run: |
git config --global user.email "opencode@sst.dev"
git config --global user.name "opencode"
./script/publish
working-directory: ./github