From b806d84b1cbf39d0d56c0283e9af45abbbeb2e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?NaveenKumar=20Namachivayam=20=E2=9A=A1?= Date: Wed, 22 Nov 2023 22:04:18 -0500 Subject: [PATCH] Add: GH Workflow for Windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: NaveenKumar Namachivayam ⚡ --- .github/workflows/release-workflow.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release-workflow.yml b/.github/workflows/release-workflow.yml index c37f555..5220042 100644 --- a/.github/workflows/release-workflow.yml +++ b/.github/workflows/release-workflow.yml @@ -51,7 +51,6 @@ jobs: run: | python -m pip install --upgrade pip pip install windows\requirements.txt - if: matrix.os == 'windows' && matrix.arch == 'X86' # - name: Install dependencies @@ -76,7 +75,6 @@ jobs: run: | python windows\setup.py bdist_msi mv dist dist-windows - if: matrix.os == 'windows' && matrix.arch == 'X86' - name: Convert dist-intel to DMG run: | @@ -107,7 +105,6 @@ jobs: with: name: Hamster-windows-x86_64 path: dist-windows/Hamster-*.msi - if: matrix.os == 'windows' && matrix.arch == 'X86' - name: GitHub Tag uses: mathieudutour/github-tag-action@v6.1 @@ -141,9 +138,9 @@ jobs: uses: softprops/action-gh-release@v1 if: github.ref == 'refs/heads/main' with: - token: ${{ secrets.HAMSTER_APP_RELEASE_SECRET }} - body: 'Release for commit ${{ github.sha }}' - generate_release_notes: true - tag_name: ${{ env.RELEASE_TAG }} - files: | - dist-windows/Hamster-*.msi \ No newline at end of file + token: ${{ secrets.HAMSTER_APP_RELEASE_SECRET }} + body: 'Release for commit ${{ github.sha }}' + generate_release_notes: true + tag_name: ${{ env.RELEASE_TAG }} + files: | + dist-windows/Hamster-*.msi \ No newline at end of file