We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f453c commit b6f36d6Copy full SHA for b6f36d6
.github/workflows/build_cmake.yml
@@ -258,20 +258,20 @@ jobs:
258
259
# The json is the same for all platforms, but we need to save one
260
- name: Upload plugin json
261
- if: matrix.config.os == 'ubuntu-latest'
+ if: startsWith(matrix.config.os, 'ubuntu')
262
uses: actions/upload-artifact@v4
263
with:
264
name: ${{ env.PLUGIN_NAME }}-origin-json
265
path: ./build/build/${{ env.PLUGIN_NAME }}.json
266
267
- name: Run unit tests
268
269
run: |
270
xvfb-run ./build/build/test/QodeAssistTest
271
272
update_json:
273
if: contains(github.ref, 'tags/v')
274
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
275
needs: build
276
277
steps:
0 commit comments