Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlynch94 authored Sep 26, 2024
1 parent dc095e1 commit cb8852b
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cb8852b

Please sign in to comment.