Merge pull request #748 from teksi/20250905_interlis_export_add_250_s… #8
This file contains hidden or 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: 🔌 Plugin | Package and release | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name != 'workflow_call' }} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - plugin/** | |
| - '.github/workflows/datamodel-create-dumps.yml' | |
| workflow_dispatch: | |
| workflow_call: # Allows this workflow to be called by other workflows | |
| inputs: | |
| release_tag: | |
| required: false | |
| description: 'Release tag to upload plugin as GitHub Release asset' | |
| default: '' | |
| type: string | |
| jobs: | |
| plugin-package: | |
| name: Packages and releases plugin | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Qt lrelease | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install qtbase5-dev qttools5-dev-tools | |
| - name: Install qgis-plugin-ci | |
| run: pip install qgis-plugin-ci>=2.8.6 | |
| - name: 🌍 Push translations | |
| if: ${{ github.event_name == 'push' }} | |
| run: qgis-plugin-ci push-translation ${{ secrets.TX_TOKEN }} | |
| - name: Package PyPI Packages | |
| run: ./plugin/scripts/package-pip-packages.sh | |
| - name: Download Interlis libs | |
| run: ./plugin/scripts/download-interlis-libs.sh | |
| - name: Package | |
| run: | | |
| VERSION=0.0.0 | |
| qgis-plugin-ci -v package ${VERSION} \ | |
| --allow-uncommitted-changes \ | |
| --asset-path plugin/teksi_wastewater/libs \ | |
| --asset-path plugin/teksi_wastewater/interlis/bin \ | |
| --transifex-token "${{ secrets.TX_TOKEN }}" | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: teksi_wastewater_plugin_dev | |
| path: plugin/teksi_wastewater.0.0.0.zip | |
| if-no-files-found: error | |
| - name: Upload plugin as GitHub Release asset | |
| if: ${{ inputs.release_tag != '' }} | |
| run: gh release upload "${{ inputs.release_tag }}" plugin/teksi_wastewater.0.0.0.zip#oqtopus.plugin --repo "$GITHUB_REPOSITORY" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TAG: ${{ github.ref_name }} |