Skip to content

Commit 915ee56

Browse files
committed
Polishing
1 parent 5f1a310 commit 915ee56

File tree

3 files changed

+10
-83
lines changed

3 files changed

+10
-83
lines changed

.github/actions/setup-ryzenai-server/action.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

.github/workflows/build_and_release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Build and Release RyzenAI Server
33
on:
44
push:
55
branches: ["main"]
6+
tags:
7+
- v*
68
paths:
79
- '**.cpp'
810
- '**.h'
@@ -15,12 +17,6 @@ on:
1517
- 'CMakeLists.txt'
1618
- '.github/workflows/**'
1719
workflow_dispatch:
18-
inputs:
19-
create_release:
20-
description: 'Create a GitHub release with the built artifacts'
21-
required: false
22-
default: false
23-
type: boolean
2420

2521
permissions:
2622
contents: write
@@ -149,7 +145,7 @@ jobs:
149145
name: Create GitHub Release
150146
needs: build-ryzenai-server
151147
runs-on: ubuntu-latest
152-
if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.create_release == 'true'))
148+
if: startsWith(github.ref, 'refs/tags/v')
153149
steps:
154150
- uses: actions/checkout@v4
155151
with:

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This server enables running Large Language Models on AMD Ryzen AI 300-series pro
3030
- Download from: https://ryzenai.docs.amd.com
3131

3232
**Hardware Requirements:**
33-
- AMD Ryzen AI 300-series processor (for NPU execution)
33+
- AMD Ryzen AI 300- or 400-series processor (for NPU execution)
3434
- Minimum 16GB RAM (32GB recommended for larger models)
3535

3636
### Build Steps
@@ -322,8 +322,10 @@ build\bin\Debug\ryzenai-server.exe
322322

323323
## License
324324

325-
This project's source code is licensed under the Apache 2.0 License.
325+
This project's **source code** is licensed under the **MIT License** - see [LICENSE](LICENSE) for details.
326326

327-
**Third-Party Dependencies:**
328-
- **cpp-httplib** and **nlohmann/json** use MIT licenses
329-
- **Ryzen AI DLLs** (included in binary releases) are licensed under the AMD Software End User License Agreement - see `AMD_LICENSE` file in the release package for full terms
327+
**Release Artifacts (ryzenai-server.zip):**
328+
- The `ryzenai-server.exe` binary and the header-only dependencies (**cpp-httplib**, **nlohmann/json**) are MIT licensed
329+
- The **Ryzen AI DLLs** included in binary releases are licensed under the AMD Software End User License Agreement - see `AMD_LICENSE` file in the release package for full terms
330+
331+
**Note:** When you download a release, the `AMD_LICENSE` file is included alongside the DLLs. The source code in this repository does not include the DLLs - they are copied from your local Ryzen AI installation during the build process.

0 commit comments

Comments
 (0)