Skip to content

Commit

Permalink
fix: cleanup release config (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
anninowak authored Mar 26, 2024
1 parent c618cc2 commit 56c9a86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
run: npx nx run-many -t lint
- name: Test
run: npx nx run-many -t test --configuration=ci
- name: Build to see debug output (remove later)
run: npx nx run-many -t build --verbose
- name: Release
run: npx semantic-release
env:
Expand Down
2 changes: 1 addition & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
[
'@semantic-release/exec',
{
prepareCmd: `(VERSION=\${nextRelease.version} npx nx run-many -t release --verbose && VERSION=\${nextRelease.version} npx -p replace-json-property rjp ./package.json version \${nextRelease.version}) >> output.txt || cat output.txt`,
prepareCmd: `VERSION=\${nextRelease.version} npx nx run-many -t release --verbose && VERSION=\${nextRelease.version} npx -p replace-json-property rjp ./package.json version \${nextRelease.version}`,
},
],
[
Expand Down

0 comments on commit 56c9a86

Please sign in to comment.