Skip to content

Commit

Permalink
fix: Replace ubuntu-latest to ubuntu 22.04 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
Palm1r authored Mar 10, 2025
1 parent f2f453c commit b6f36d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,20 +258,20 @@ jobs:

# The json is the same for all platforms, but we need to save one
- name: Upload plugin json
if: matrix.config.os == 'ubuntu-latest'
if: startsWith(matrix.config.os, 'ubuntu')
uses: actions/upload-artifact@v4
with:
name: ${{ env.PLUGIN_NAME }}-origin-json
path: ./build/build/${{ env.PLUGIN_NAME }}.json

- name: Run unit tests
if: matrix.config.os == 'ubuntu-latest'
if: startsWith(matrix.config.os, 'ubuntu')
run: |
xvfb-run ./build/build/test/QodeAssistTest
update_json:
if: contains(github.ref, 'tags/v')
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: build

steps:
Expand Down

0 comments on commit b6f36d6

Please sign in to comment.