From 80ca73b8b1e1f0658bc25cc173ae475d5a8ff8f0 Mon Sep 17 00:00:00 2001 From: anejolov <118720241+anejolov@users.noreply.github.com> Date: Thu, 13 Mar 2025 11:47:05 +0200 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ecaffdf --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,47 @@ +name: Build SFX EXE on Release + +on: + release: + types: [published] + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Install WinRAR + run: | + choco install winrar -y + shell: powershell + + - name: Get Release Version + run: echo "RELEASE_VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV + shell: bash + + - name: Create SFX archive + run: | + $SFXConfig = @" + Path=%TEMP%\Windeckhelper + Silent=1 + Overwrite=1 + Setup=PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& .\Windeckhelper.ps1" + TempMode=1 + Title=WindeckHelper Installer + Icon=Windeckicon.ico + "@ + Set-Content -Path "sfx_config.txt" -Value $SFXConfig + + $exeName = "WindeckHelper_${{ env.RELEASE_VERSION }}.exe" + & "C:\Program Files\WinRAR\WinRAR.exe" a -r -sfx -z"sfx_config.txt" $exeName * + echo "EXE_NAME=$exeName" >> $GITHUB_ENV + shell: powershell + + - name: Upload EXE to Release + uses: softprops/action-gh-release@v2 + with: + files: ${{ env.EXE_NAME }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}