From 935188b8bdab76b7d3e5c82b51de325646b4b90c Mon Sep 17 00:00:00 2001 From: Fioren <102145692+FiorenMas@users.noreply.github.com> Date: Wed, 3 Dec 2025 12:40:36 +0700 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..3d8b37e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,32 @@ +name: Release +on: + workflow_dispatch: +jobs: + Release: + name: Release + permissions: + contents: write + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v6.0.1 + + - name: Install Python + uses: actions/setup-python@main + + - name: Preparing + run: | + pip install rich psutil auto-py-to-exe + + - name: Build + run: | + pyinstaller --noconfirm --onefile --console "CapCrackV2.5(beta).py" + + - name: Release + uses: ncipollo/release-action@v1.14.0 + with: + artifacts: | + dist\CapCrackV2.5(beta).exe + name: Capcut + tag: release + allowUpdates: trues