Skip to content

Commit

Permalink
Merge pull request #27 from lxndrblz/dist
Browse files Browse the repository at this point in the history
fix: update indentation 🧼
  • Loading branch information
KarelZe authored Jan 6, 2024
2 parents 358944f + e79ba67 commit ae42d9e
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}'

0 comments on commit ae42d9e

Please sign in to comment.