Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can I merge my updated project to your offical GitHub account? Thanks! #1

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
matrix:
include:
- { sys: mingw64, arch: 64bit, env: x86_64 }
- { sys: mingw32, arch: 32bit, env: i686 }
- { sys: mingw64, arch: 32bit, env: i686 }

defaults:
run:
shell: msys2 {0}

steps:
- name: Set up MinGW
uses: msys2/setup-msys2@v2
uses: msys2/setup-msys2@main
with:
update: true
msystem: ${{matrix.sys}}
Expand All @@ -32,10 +32,10 @@ jobs:
mingw-w64-${{matrix.env}}-python-pip

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@main
with:
repository: pyinstaller/pyinstaller
ref: v4.10
ref: v5.1

- name: Build bootloader
run: |
Expand All @@ -48,7 +48,7 @@ jobs:
python setup.py sdist bdist_wheel

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
Expand Down