Skip to content

3.9.9

3.9.9 #19

Workflow file for this run

name: Release
on:
release:
types: released
jobs:
plugin_dst:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.9'
# Use extra pip install . to do a non-editable install,
# so that .dist-info will go the package instead of .egg-info
- run: |
pip install -r requirements.txt --no-deps --only-binary=:all:
pip install . --no-deps
- run: |
qgis-plugin-dev-tools build
- run: |
qgis-plugin-dev-tools publish dist/*.zip
env:
QPDT_PUBLISH_USERNAME: ${{ secrets.QGIS_REPO_USERNAME }}
QPDT_PUBLISH_PASSWORD: ${{ secrets.QGIS_REPO_PASSWORD }}
- uses: svenstaro/[email protected]
with:
file: dist/*
file_glob: true