From 39d7367764bbfcb6e53a856c113f0dc4c577d77a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Gr=C3=B8n=C3=A5s?= Date: Sat, 9 Mar 2024 10:29:28 +0100 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 57 +++++++++++++++++------------------ 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6769ca7..842536b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,36 +7,35 @@ on: jobs: release: - build: - runs-on: windows-latest - steps: - - name: Checkout - uses: actions/checkout@v3 + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v3 - - name: Set up Python 3.9 - uses: actions/setup-python@v4 - with: - python-version: 3.9 + - name: Set up Python 3.9 + uses: actions/setup-python@v4 + with: + python-version: 3.9 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt - - name: Build with PyInstaller - run: | - pyinstaller main.spec + - name: Build with PyInstaller + run: | + pyinstaller main.spec - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - body: | - Changes in this Release: - - Built with PyInstaller - draft: false - prerelease: false \ No newline at end of file + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + body: | + Changes in this Release: + - Built with PyInstaller + draft: false + prerelease: false \ No newline at end of file