放大框的缩放比例超出图像大小会挤在一起v2 #170
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
--- | |
"on": | |
push: | |
paths-ignore: | |
- "**.md" | |
- docs/* | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- docs/* | |
workflow_dispatch: | |
# https://github.com/softprops/action-gh-release/issues/236 | |
permissions: | |
contents: write | |
env: | |
python-version: 3.x | |
cache: pip | |
jobs: | |
# test: | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# runs-on: | |
# - ubuntu-latest | |
# - macos-latest | |
# - windows-latest | |
# runs-on: ${{ matrix.runs-on }} | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: actions/setup-python@v5 | |
# with: | |
# python-version: ${{ env.python-version }} | |
# cache: ${{ env.cache }} | |
# cache-dependency-path: |- | |
# requirements.txt | |
# requirements/dev.txt | |
# - name: Install dependencies | |
# run: | | |
# pip install -e '.[dev]' | |
# - name: Test | |
# run: | | |
# pre-commit run -a | |
build: | |
# needs: test | |
strategy: | |
fail-fast: false | |
matrix: | |
runs-on: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.python-version }} | |
cache: ${{ env.cache }} | |
cache-dependency-path: |- | |
requirements.txt | |
requirements/dev.txt | |
- name: Install dependencies | |
run: | | |
pip install build | |
- name: Build | |
run: | | |
python -m build | |
- uses: actions/upload-artifact@v4 | |
if: runner.os == 'Linux' && ! startsWith(github.ref, 'refs/tags/') | |
with: | |
path: | | |
dist/* | |
- uses: softprops/action-gh-release@v2 | |
if: runner.os == 'Linux' && startsWith(github.ref, 'refs/tags/') | |
with: | |
body_path: build/CHANGELOG.md | |
files: | | |
dist/* | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
if: runner.os == 'Linux' && startsWith(github.ref, 'refs/tags/') | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: Freed-Wu/[email protected] | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
package_name: python-mulimgviewer | |
ssh_private_key: ${{secrets.AUR_SSH_PRIVATE_KEY}} |