Skip to content

Commit 3f1ec55

Browse files
authored
ci: fix release flow (#564)
1 parent 7bc56be commit 3f1ec55

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/publish_to_npm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Publish to NPM
3838
run: |
3939
git checkout -- .
40-
npx lerna publish --contents dist --yes --no-verify-access
40+
npx lerna publish --contents dist --yes
4141
npm i --no-audit # reinstall to have updated lock file
4242
npx lerna ls --json | node scripts/sync-root-changelog.ts
4343
env:

.github/workflows/test_and_release.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,7 @@ jobs:
107107
uses: apify/workflows/execute-workflow@main
108108
with:
109109
workflow: publish_to_npm.yaml
110-
inputs: '{ "ref": "${{ github.sha }}" }'
110+
inputs: >
111+
{
112+
"ref": "master"
113+
}

0 commit comments

Comments
 (0)