Skip to content

Commit

Permalink
ci: do not generate release body for prerelease (#7905)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Jun 21, 2024
1 parent a780f18 commit ded7a31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
echo "new_version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
- name: Generate Release Body
if: ${{ env.IS_RRE_RELEASE_MODE == 'false' }}
id: generate_body
run: |
npx extract-changelog-release > RELEASE_BODY.md
Expand Down
8 changes: 6 additions & 2 deletions projects/demo/project.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "demo",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "projects/demo",
"sourceRoot": "projects/{projectName}",
"projectType": "application",
"prefix": "app",
"implicitDependencies": ["!testing"],
Expand Down Expand Up @@ -32,7 +32,11 @@
"polyfills": "{projectRoot}/src/polyfills.ts",
"tsConfig": "projects/{projectName}/tsconfig.app.json",
"assets": [
"{projectRoot}/src/404.html",
{
"glob": "**/404.html",
"input": "{projectRoot}/src/",
"output": "./"
},
{
"glob": "**/*",
"input": "{projectRoot}/src/assets/",
Expand Down

0 comments on commit ded7a31

Please sign in to comment.