Skip to content

Commit

Permalink
Update GitHub action pre-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
thorrak committed Nov 11, 2023
1 parent cc691b6 commit 7b0a191
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
- run: pyinstaller --log-level=DEBUG --noconfirm build-on-win.spec

- name: upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
path: dist/*
10 changes: 5 additions & 5 deletions .github/workflows/build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
runs-on: 'windows-latest'

steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-python@v4.6.1
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v4.7.1
with:
python-version: '3.9'
python-version: '3.11'

- run: pip install -r requirements.txt
- name: rebuild bootloader
run: |
pip install wheel
pip uninstall -y pyinstaller
git clone https://github.com/pyinstaller/pyinstaller
git checkout v5.13.0
git checkout v6.1.0
cd pyinstaller
cd bootloader
python3 ./waf distclean all
Expand All @@ -32,6 +32,6 @@ jobs:
- run: pyinstaller --log-level=DEBUG --noconfirm build-on-win.spec

- name: upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
path: dist/*

0 comments on commit 7b0a191

Please sign in to comment.