Skip to content

Commit 565c665

Browse files
authored
refactor build.yml
removed README generation and installation instructions from the build process as its pointless.
1 parent 9410fa4 commit 565c665

1 file changed

Lines changed: 2 additions & 28 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -436,22 +436,6 @@ jobs:
436436
437437
Copy-Item "../Build/Bind/Release/*" "release-package\" -Recurse
438438
439-
# Create README
440-
$version = "v1.3.2"
441-
$readmeText = "# SysCaller: Bind - v1.3.2`n`n"
442-
$readmeText += "Build Date: $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss UTC')`n"
443-
$readmeText += "Commit: ${{ github.sha }}`n"
444-
$readmeText += "Platform: Windows x64 (64-bit)`n"
445-
$readmeText += "Version: $version`n`n"
446-
$readmeText += "## Installation`n"
447-
$readmeText += "1. Download Bind.exe`n"
448-
$readmeText += "2. Run the executable`n`n"
449-
$readmeText += "## Requirements`n"
450-
$readmeText += "- Windows 10 or later`n"
451-
$readmeText += "- Visual C++ Redistributable (if not already installed)`n"
452-
$readmeText += "- Qt5 runtime libraries (if not already installed)"
453-
$readmeText | Out-File -FilePath "release-package\README.txt" -Encoding UTF8
454-
455439
# Create the zip file
456440
Compress-Archive -Path "release-package\*" -DestinationPath $zipName -Force
457441
@@ -474,24 +458,14 @@ jobs:
474458
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
475459
with:
476460
tag_name: v1.3.2
477-
release_name: "SysCaller: Bind - v1.3.2"
461+
release_name: "SysCaller: Bind v1.3.2"
478462
body: |
479-
## SysCaller: Bind - v1.3.2
463+
## SysCaller: Bind v1.3.2
480464
481465
**Build Date:** ${{ github.event.head_commit.timestamp }}
482466
**Commit:** ${{ github.sha }}
483467
**Platform:** Windows x64 (64-bit)
484468
485-
## Installation
486-
1. Download Bind.zip
487-
2. Replace the downloaded Bind directory with the one in SysCaller
488-
3. Extract the zip & run the Bind.exe
489-
490-
## Requirements
491-
- Windows 10 or later
492-
- Visual C++ Redistributable (if not already installed)
493-
- Qt5 runtime libraries (if not already installed)
494-
495469
- name: Upload Release Asset
496470
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
497471
uses: actions/upload-release-asset@v1

0 commit comments

Comments
 (0)