Skip to content

Commit

Permalink
fix : auto release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fal3n-4ngel committed Dec 30, 2024
1 parent 1a84fda commit 160b3d5
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Release Tauri App
name: Release
on:
push:
tags:
- 'v*' # Trigger on version tags
- 'v*'
workflow_dispatch:

jobs:
release:
Expand Down Expand Up @@ -42,7 +43,30 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ github.ref_name }}
releaseName: 'App v__VERSION__'
releaseBody: 'Latest Release of DASH DESKTOP.'
releaseName: 'Dash Desktop ${{ github.ref_name }}'
releaseBody: |
## Dash Desktop ${{ github.ref_name }}
### Download Options
Choose the appropriate version for your operating system:
- Windows: `.msi` installer
- macOS: `.dmg` installer
- Linux: `.deb` package and `.AppImage`
### Installation
1. Download the appropriate file for your OS
2. Run the installer
3. Follow the on-screen instructions
### System Requirements
- Windows 10/11
- macOS 10.15+
- Ubuntu 20.04 or compatible Linux distribution
### Support
If you encounter any issues, please open an issue on GitHub.
---
Release Date: ${{ github.event.repository.updated_at }}
releaseDraft: false
prerelease: false
prerelease: false

0 comments on commit 160b3d5

Please sign in to comment.