From cb8852b5cdef3af0d09b1caddb3aaef61354bb11 Mon Sep 17 00:00:00 2001 From: nmlynch94 <40608755+nmlynch94@users.noreply.github.com> Date: Thu, 26 Sep 2024 03:09:42 -0400 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2b1a82..0a10196 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,13 +30,25 @@ jobs: NEW_VERSION="$MAJOR.$MINOR.$((PATCH+1))" echo "NEW_TAG=$NEW_VERSION" >> $GITHUB_OUTPUT echo "APP_NAME=$(basename $(pwd))" >> $GITHUB_OUTPUT - - name: Install dependencies + - name: Setup GPG + id: import-gpg + uses: crazy-max/ghaction-import-gpg@v6 + with: + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} + git_config_global: true + git_user_signingkey: true + git_commit_gpgsign: true + - name: Install dependencies run: | - sudo apt-get update -y - sudo apt-get install -y \ + DEBIAN_FRONTEND=noninteractive sudo apt-get update -y + git config --global protocol.file.allow always + sudo apt-get install --no-install-recommends -y \ + icoutils \ flatpak \ flatpak-builder \ - icoutils + elfutils \ + rsync - name: Build the flatpak bundle run: | chmod +x build.sh