Update build pipeline

This commit is contained in:
MrTeferi
2022-11-21 20:23:29 -06:00
parent 8c720639f9
commit 5d2c266cc7
2 changed files with 17 additions and 17 deletions

View File

@@ -30,12 +30,16 @@ jobs:
version: 1.2.2
- name: Install dependencies
run: |
poetry install
poetry install --no-interaction
- name: Build with PyInstaller
run: |
poetry run pyinstaller launcher.spec ${{ github.ref_name }}
poetry run pyinstaller launcher.spec
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
path: ./dist/cardconjurer-server.${{ github.ref_name }}.zip
name: CC Server (${{ matrix.TARGET }})
path:
if matrix.os == "windows-latest":
./dist/launcher.exe
else:
./dist/launcher
name: CC Server (${{ matrix.TARGET }})