Skip to content

Commit

Permalink
ci(fix): disable default debug releases (#56)
Browse files Browse the repository at this point in the history
Description
Disable default debug releases

Motivation and Context
---

How Has This Been Tested?
---

What process can a PR reviewer use to test or verify this change?
---

<!-- Checklist -->
<!-- 1. Is the title of your PR in the form that would make nice release
notes? The title, excluding the conventional commit
tag, will be included exactly as is in the CHANGELOG, so please think
about it carefully. -->


Breaking Changes
---

- [x] None
- [ ] Requires data directory on base node to be deleted
- [ ] Requires hard fork
- [ ] Other - Please specify

<!-- Does this include a breaking change? If so, include this line as a
footer -->
<!-- BREAKING CHANGE: Description what the user should do, e.g. delete a
database, resync the chain -->
  • Loading branch information
leet4tari authored Aug 15, 2024
1 parent 6882c9e commit 7d70492
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
releaseName: 'Tari Universe v__VERSION__'
releaseBody: 'Tari Universe - See the assets to download this version and install'
releaseDraft: true
prerelease: ${{ ( ! startsWith(github.ref, 'refs/tags/v') ) }}
includeDebug: ${{ ( ! startsWith(github.ref, 'refs/tags/v') ) }}
includeRelease: ${{ ( startsWith(github.ref, 'refs/tags/v') ) }}
prerelease: true
includeDebug: false
includeRelease: true
args: ${{ matrix.args }}

0 comments on commit 7d70492

Please sign in to comment.