Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ jobs:
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.create-release.outputs.tag_name }}
draft: true # Keep as draft until all builds complete
files: |
dist/*.exe
dist/*.dmg
Expand All @@ -137,3 +138,17 @@ jobs:
dist/latest*.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

publish-release:
name: Publish Release
needs: [create-release, build-and-upload]
runs-on: ubuntu-latest

steps:
- name: Publish Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.create-release.outputs.tag_name }}
draft: false # Publish the release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog],
and this project adheres to [Semantic Versioning].

## [0.9.3] - 2026-04-03

### Fixed

- Fix race condition in release workflow where builds could publish release before all platforms completed (now waits for all builds before publishing)

## [0.9.2] - 2026-04-03

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dexreader",
"productName": "DexReader",
"version": "0.9.2",
"version": "0.9.3",
"description": "An Electron application with React and TypeScript",
"main": "./out/main/index.js",
"author": "remichan97",
Expand Down
Loading