Skip to content

Commit 076614b

Browse files
author
Luis Valdés
authored
fix: correct script paths in CI workflows (CopilotKit#3006)
1 parent 22437ad commit 076614b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish_custom-pre.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
run: pnpm run build
3434

3535
- name: Publish snapshot
36-
run: ./scripts/release/publish-snapshot-release.sh
36+
run: ./src/v1.x/scripts/release/publish-snapshot-release.sh
3737
env:
3838
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
- name: Git Tag
107107
if: ${{ steps.check-if-published.outputs.published == 'true' && steps.is-in-prerelease-mode.outputs.is_in_prerelease_mode == 'false' }}
108108
run: |
109-
node -p "require('./scripts/release/generate-changelog')('${{ steps.new-version.outputs.version }}')" > changelog.txt
109+
node -p "require('./src/v1.x/scripts/release/generate-changelog')('${{ steps.new-version.outputs.version }}')" > changelog.txt
110110
git tag -a v${{ steps.new-version.outputs.version }} -m "Release ${{ steps.new-version.outputs.version }}"
111111
git push origin v${{ steps.new-version.outputs.version }}
112112
git push origin main --force

0 commit comments

Comments
 (0)