|
65 | 65 | $env:QGIS_PLUGIN_IN_CI=1
|
66 | 66 | python-qgis-ltr.bat -m pip install -qr requirements-dev.txt
|
67 | 67 | python-qgis-ltr.bat -m pytest -v
|
68 |
| -
|
69 |
| - pre-release: |
70 |
| - name: "Pre Release" |
71 |
| - runs-on: "ubuntu-latest" |
72 |
| - needs: [linux_tests, windows_tests] |
73 |
| - |
74 |
| - steps: |
75 |
| - - uses: hmarr/debug-action@v2 |
76 |
| - |
77 |
| - - uses: "marvinpinto/action-automatic-releases@latest" |
78 |
| - if: ${{ github.event.pull_request }} |
79 |
| - with: |
80 |
| - repo_token: "${{ secrets.GITHUB_TOKEN }}" |
81 |
| - automatic_release_tag: "dev-pr" |
82 |
| - prerelease: true |
83 |
| - title: "Development Build made for PR #${{ github.event.number }}" |
84 |
| - |
85 |
| - - uses: "marvinpinto/action-automatic-releases@latest" |
86 |
| - if: ${{ github.event.after != github.event.before }} |
87 |
| - with: |
88 |
| - repo_token: "${{ secrets.GITHUB_TOKEN }}" |
89 |
| - automatic_release_tag: "dev" |
90 |
| - prerelease: true |
91 |
| - title: "Development Build made for master branch" |
92 |
| - |
93 |
| - - uses: actions/checkout@v2 |
94 |
| - with: |
95 |
| - submodules: true |
96 |
| - |
97 |
| - - name: Set up Python 3.8 |
98 |
| - uses: actions/setup-python@v1 |
99 |
| - with: |
100 |
| - python-version: 3.8 |
101 |
| - |
102 |
| - # Needed if the plugin is using Transifex, to have the lrelease command |
103 |
| - # - name: Install Qt lrelease |
104 |
| - # run: sudo apt-get update && sudo apt-get install qt5-default qttools5-dev-tools |
105 |
| - |
106 |
| - - name: Install qgis-plugin-ci |
107 |
| - run: pip3 install qgis-plugin-ci |
108 |
| - |
109 |
| - # When Transifex is wanted: --transifex-token ${{ secrets.TRANSIFEX_TOKEN }} |
110 |
| - - name: Deploy plugin |
111 |
| - if: ${{ github.event.pull_request }} |
112 |
| - run: qgis-plugin-ci release dev-pr --github-token ${{ secrets.GITHUB_TOKEN }} --disable-submodule-update |
113 |
| - |
114 |
| - # When Transifex is wanted: --transifex-token ${{ secrets.TRANSIFEX_TOKEN }} |
115 |
| - - name: Deploy plugin |
116 |
| - if: ${{ github.event.after != github.event.before }} |
117 |
| - run: qgis-plugin-ci release dev --github-token ${{ secrets.GITHUB_TOKEN }} --disable-submodule-update |
0 commit comments