Skip to content

Commit

Permalink
Create workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
adib-yg authored Oct 23, 2023
1 parent 6860dfd commit dbdc259
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: open.mp server browser

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8.2
uses: actions/setup-python@v3
with:
python-version: "3.8.2"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install PyInstaller
python -m pip install -r requirements.txt
- name: Build with PyInstaller
run: |
PyInstaller main.spec

0 comments on commit dbdc259

Please sign in to comment.