Skip to content

Commit 97ce7e3

Browse files
committed
workflow updated
1 parent 9a70fbb commit 97ce7e3

2 files changed

Lines changed: 13 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
distribution: 'graalvm' # See 'Supported distributions' for available options
1616
github-token: ${{ secrets.GITHUB_TOKEN }}
1717

18+
- name: Get version from Gradle
19+
id: get_version
20+
run: echo "VERSION=$(./gradlew properties | grep 'version:')" >> $GITHUB_ENV
21+
1822
- name: Install native build dependencies
1923
run: |
2024
sudo apt-get update
@@ -44,9 +48,16 @@ jobs:
4448
uses: softprops/action-gh-release@v2
4549
with:
4650
tag_name: v${{ github.run_number }}
47-
name: "VictusHub Build #${{ github.run_number }}"
51+
name: "VictusHub ${{ env.VERSION }}"
4852
body: |
49-
Otomatik build.
53+
### 🧰 Usage
54+
55+
```bash
56+
unzip files
57+
chmod 777 setup.sh
58+
./setup.sh
59+
```
60+
✅ Installation completed!
5061
- Commit: ${{ github.sha }}
5162
- Branch: ${{ github.ref_name }}
5263
files: VictusHub.zip

build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,3 @@ tasks.register<Copy>("victusBuild") {
9595
into("Installer")
9696

9797
}
98-
99-

0 commit comments

Comments
 (0)