Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnlentink authored Mar 18, 2024
1 parent 1a87fe1 commit b4e6288
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
push:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['windows-latest', 'macos-latest']

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7

- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller -c -F bible_import.py --add-data "Resources/metadata.xml:."
- uses: actions/upload-artifact@v2
with:
path: dist/*

0 comments on commit b4e6288

Please sign in to comment.