We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e8ba7f commit eb2251eCopy full SHA for eb2251e
.github/workflows/releaser.yml
@@ -44,12 +44,17 @@ jobs:
44
- name : Get current changelog for ${GITHUB_REF/refs\/tags\//}
45
run: qgis-plugin-ci changelog ${GITHUB_REF/refs\/tags\//} >> release.md
46
47
-
48
- name: Deploy plugin
+ env:
49
+ OSGEO_USERNAME: ${{ secrets.OSGEO_USERNAME }}
50
+ OSGEO_PASSWORD: ${{ secrets.OSGEO_PASSWORD }}
51
+
52
run: >-
53
qgis-plugin-ci
54
release ${GITHUB_REF/refs\/tags\//}
- --github-token ${{ secrets.GITHUB_TOKEN }}
55
--allow-uncommitted-changes
56
--create-plugin-repo
57
+ --osgeo-username "$OSGEO_USERNAME"
58
+ --osgeo-password "$OSGEO_PASSWORD"
59
60
0 commit comments