From e79ba675763a66955ba4c4cf7c982c94e40a7424 Mon Sep 17 00:00:00 2001 From: Markus Bilz Date: Sat, 6 Jan 2024 21:43:48 +0100 Subject: [PATCH] fix: indentation --- .github/workflows/release.yaml | 44 +++++++++++++++++----------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b9ee408..6bfc2c4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,25 +4,25 @@ on: permissions: contents: write jobs: -build: - name: Build exectuable 📦 - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.9" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install -r requirements.txt pyinstaller - - name: Build binary - run: pyinstaller "main.spec" - - name: Upload artifacts to GitHub Release - env: - GITHUB_TOKEN: ${{ github.token }} - run: >- - gh release upload - '${{ github.ref_name }}' dist/ms_teams_parser.exe - --repo '${{ github.repository }}' + build: + name: Build exectuable 📦 + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.9" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install -r requirements.txt pyinstaller + - name: Build binary + run: pyinstaller "main.spec" + - name: Upload artifacts to GitHub Release + env: + GITHUB_TOKEN: ${{ github.token }} + run: >- + gh release upload + '${{ github.ref_name }}' dist/ms_teams_parser.exe + --repo '${{ github.repository }}'