Update LogonDetails.exe #51
Workflow file for this run
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: Complie LogonDetails.exe | |
on: | |
push: | |
branches: | |
- 'main' | |
- '548' | |
jobs: | |
changes: | |
name: Check for Changes | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
outputs: | |
build: ${{ steps.filter.outputs.build }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Check for Changes | |
uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
build: | |
- './UK/LogonDetails.py' | |
build-exe: | |
name: Build EXE | |
runs-on: windows-latest | |
# needs: changes | |
# if: ${{ needs.changes.outputs.build == 'true' }} | |
concurrency: | |
group: uk-controller-pack-build-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.VATSIM_UK_GITHUB_TOKEN }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install Dependencies | |
run: pip install pyinstaller | |
- name: Run Python Script | |
run: pyinstaller --distpath ./UK/ --onefile -n LogonDetails.exe ./UK/LogonDetails.py | |
- name: Commit exe File | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "VATSIM UK" | |
git add ./UK/LogonDetails.exe | |
git commit -m "Update LogonDetails.exe" | |
git push |