fix: resolve Cubic review issues - workflow YAML, issue templates, stale references

This commit is contained in:
YeonGyu-Kim
2026-03-18 12:37:21 +09:00
parent f60c784d43
commit 60e1f6d580
9 changed files with 21 additions and 10 deletions
+6 -5
View File
@@ -269,6 +269,7 @@ jobs:
registry-url: "https://registry.npmjs.org"
- name: Publish oh-my-openagent-${{ matrix.platform }}
if: steps.check.outputs.skip != 'true' && steps.download.outcome == 'success'
run: |
cd packages/${{ matrix.platform }}
@@ -284,21 +285,21 @@ jobs:
timeout-minutes: 15
- name: Publish oh-my-opencode-${{ matrix.platform }} (alias)
if: steps.check.outputs.skip != 'true' && steps.download.outcome == 'success'
run: |
cd packages/${{ matrix.platform }}
# Rename package for oh-my-opencode
jq --arg name "oh-my-opencode-${{ matrix.platform }}" \
--arg desc "Platform-specific binary for oh-my-opencode (${{ matrix.platform }})" \
'.name = $name | .description = $desc | .bin = {"oh-my-opencode": (.bin | to_entries | .[0].value)}' \
package.json > tmp.json && mv tmp.json package.json
'.name = $name | .description = $desc | .bin = {"oh-my-openagent": (.bin | to_entries | .[0].value)}' \
package.json > tmp.json && mv tmp.json package.json
TAG_ARG=""
if [ -n "${{ inputs.dist_tag }}" ]; then
TAG_ARG="--tag ${{ inputs.dist_tag }}"
fi
npm publish --access public --provenance $TAG_ARG
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}