Skip to content

Commit

Permalink
fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Apr 17, 2024
1 parent 3aacbcc commit bd4216a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/plugin-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,16 @@ jobs:
- name: Package
run: |
VERSION=0.0.0
qgis-plugin-ci -v package ${VERSION} \
qgis-plugin-ci package ${VERSION} \
--allow-uncommitted-changes \
--asset-path pg_service_parser/libs \
--transifex-token "${{ secrets.TX_TOKEN }}"
- name: Release
if: startsWith(github.ref, 'refs/tags/')
run: |
VERSION=${{ github.ref_name }}
qgis-plugin-ci release ${VERSION} \
--allow-uncommitted-changes \
--asset-path pg_service_parser/libs \
--transifex-token "${{ secrets.TX_TOKEN }}"
Expand Down

0 comments on commit bd4216a

Please sign in to comment.