Skip to content
Merged
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
31 changes: 28 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Auto Release PECU
on:
push:
branches:
- main
- testing
workflow_dispatch:

jobs:
Expand All @@ -12,7 +12,6 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
releases: write

steps:
- name: Checkout repository
Expand Down Expand Up @@ -54,7 +53,33 @@ jobs:
with:
tag_name: v${{ env.VERSION }}
name: "Release v${{ env.VERSION }}"
body: "Automated release of PECU for Proxmox."
body: |
### What's New in This Update

This update brings several improvements and bug fixes to enhance the performance and reliability of the Proxmox Enhanced Configuration Utility (PECU). Detailed changes include performance optimizations and improved error handling for a smoother experience.

### How to Update

To update your PECU installation, follow one of these methods:

**Direct Execution:**
Run the latest version of the script directly from GitHub by executing:
```bash
bash <(curl -sL https://raw.githubusercontent.com/Danilop95/Proxmox-Enhanced-Configuration-Utility/refs/heads/main/proxmox-configurator.sh)
```

**Local Installation:**
Clone the repository, set the proper permissions, and run the script locally:
```bash
git clone https://github.com/Danilop95/Proxmox-Enhanced-Configuration-Utility.git
cd Proxmox-Enhanced-Configuration-Utility
chmod +x proxmox-configurator.sh
sudo ./proxmox-configurator.sh
```

### Support the Project

If you enjoy using PECU and would like to see it continue to improve, consider making a donation. Your support helps maintain and expand this project. Thank you!
draft: false
prerelease: false
files: |
Expand Down