Skip to content

Commit

Permalink
Remove the release version parameter and cleanup duplicated args
Browse files Browse the repository at this point in the history
For whatever reason we did not see the args were duplicated.

Also, releasing with release version without the leading `v` was causing the plugin version not to be easily accessible on QGIS plugins repo.
  • Loading branch information
suricactus authored Apr 27, 2022
1 parent be6a852 commit de6eb6f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,14 @@ jobs:
sudo pip install qgis-plugin-ci
- name: Release
run: |
RELEASE_VERSION=${GITHUB_REF/refs\/tags\/v/}
RELEASE_VERSION=${GITHUB_REF##*/}
RELEASE_TAG=${GITHUB_REF##*/}
qgis-plugin-ci release ${RELEASE_VERSION} \
--release-tag ${RELEASE_TAG} \
--transifex-token ${TX_TOKEN} \
--github-token ${GITHUB_TOKEN} \
--osgeo-username ${OSGEO_USERNAME} \
--osgeo-password ${OSGEO_PASSWORD}
--release-tag ${RELEASE_TAG} \
--transifex-token ${TX_TOKEN} \
--github-token ${GITHUB_TOKEN} \
--osgeo-username ${OSGEO_USERNAME} \
--osgeo-password ${OSGEO_PASSWORD}
package:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit de6eb6f

Please sign in to comment.