diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b6284c390..84e6866ac 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -54,7 +54,7 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} create-release-linux: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [build, create-draft-release] permissions: contents: write @@ -105,6 +105,7 @@ jobs: - name: Sign the deb and rpm files using dpkg-sig and rpm-sign working-directory: apps/desktop run: | + sudo apt update sudo apt install -y dpkg-sig dpkg-sig --sign builder -k ${{ secrets.GPG_KEY_ID }} ./dist/*.deb echo "%_gpg_name ${{ secrets.GPG_KEY_ID }}" > ~/.rpmmacros @@ -130,6 +131,11 @@ jobs: with: version: 9.9.0 + - name: Setup Python version + uses: actions/setup-python@v5 + with: + python-version: 3.11 + - name: Setup Node.js environment uses: actions/setup-node@v4 with: