Skip to content

Commit df451b9

Browse files
committed
fix: replace --extends with --config in semantic-release command
1 parent 7d3d387 commit df451b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎.github/workflows/container-build.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
echo '{"branches":["main"],"plugins":[["@semantic-release/npm",{"npmPublish":false}],"@semantic-release/github"]}' > .releaserc.dryrun.json
4343
4444
# Run semantic-release with --dry-run and output to JSON file
45-
npx semantic-release --dry-run --no-ci --extends .releaserc.dryrun.json > semantic-release-output.json || true
45+
npx semantic-release --dry-run --no-ci --config .releaserc.dryrun.json > semantic-release-output.json || true
4646
4747
# Check if a new release would be created
4848
if grep -q '"type":"minor"|"type":"major"|"type":"patch"' semantic-release-output.json; then

0 commit comments

Comments
 (0)