Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
OKendigelyan committed Dec 30, 2024
1 parent 2c83505 commit 19fdd21
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 19fdd21

Please sign in to comment.