Skip to content

add release workflow #1

add release workflow

add release workflow #1

Workflow file for this run

name: Release Plugin
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install qgis-plugin-ci
run: pip install qgis-plugin-ci
- name: Release
run: |
VERSION=${GITHUB_REF_NAME#v}
qgis-plugin-ci release ${VERSION} \
--github-token ${{ secrets.GITHUB_TOKEN }} \
--create-plugin-repo