Add .gitignore #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Executables | |
on: [push] | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyinstaller | |
- name: Build Windows executable | |
run: | | |
pyinstaller --onefile --name="Game" --add-data "Assets;Assets" main.py | |
- name: Upload Windows executable artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Windows-Build | |
path: dist/Game.exe | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Log in to Docker Hub | |
run: echo ${{ secrets.DOCKER_HUB_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Build Linux executable | |
run: | | |
docker pull sirenglitch/mygame:latest | |
docker run --rm -v $(pwd):/app sirenglitch/mygame:latest | |
- name: Upload Linux executable artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Linux-Build | |
path: dist/Game |