File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
16
16
release :
17
- runs-on : ubuntu-22.04
18
- env :
19
- GITHUB_REF : ${{ github.ref }}
17
+ runs-on : ubuntu-latest
20
18
if : ${{ github.event_name == 'release' }}
21
19
steps :
22
20
- name : Checkout
@@ -33,16 +31,15 @@ jobs:
33
31
run : pip3 install qgis-plugin-ci
34
32
- name : Release
35
33
run : |
36
- VERSION=$(echo "${GITHUB_REF_NAME}" | cut -d+ -f1)
37
- qgis-plugin-ci -v release ${VERSION} \
34
+ qgis-plugin-ci -v release ${GITHUB_REF/refs\/tags\//} \
38
35
--release-tag ${GITHUB_REF_NAME} \
39
36
--transifex-token ${{ secrets.TX_TOKEN }} \
40
37
--github-token ${{ secrets.GITHUB_TOKEN }} \
41
38
--osgeo-username ${{ secrets.OSGEO_USERNAME }} --osgeo-password ${{ secrets.OSGEO_PASSWORD }} \
42
39
--allow-uncommitted-changes
43
40
44
41
translations :
45
- runs-on : ubuntu-22.04
42
+ runs-on : ubuntu-latest
46
43
if : ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' }}
47
44
steps :
48
45
- name : Checkout
56
53
sudo apt-get install qtbase5-dev qttools5-dev-tools
57
54
58
55
- name : Install qgis-plugin-ci
59
- run : pip3 install qgis-plugin-ci==2.7.*
56
+ run : pip3 install qgis-plugin-ci
60
57
61
58
- name : 🌍 Push translations
62
59
run : qgis-plugin-ci push-translation ${{ secrets.TX_TOKEN }}
You can’t perform that action at this time.
0 commit comments