Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
yituodab committed May 26, 2024
1 parent ef1cbc4 commit a64e597
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build
on: push
jobs:
job1:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.0'
architecture: 'x64'
- name: Install dependencies
run: python -m pip install --upgrade pip
- name: PIP Install
run: pip install minecraft-launcher-lib pyinstaller requests subprocess
- name: Build
run: pyinstaller -F -i ico.ico Launcher.py
- name: Artifact
uses: actions/upload-artifact@v4
with:
name: Launcher
path: dist/*.exe

0 comments on commit a64e597

Please sign in to comment.