Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/Linux-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,14 @@ jobs:
echo "VER_INFO=${ver_info}" >> $GITHUB_ENV
echo "GIT_HASH=${git_hash}" >> $GITHUB_ENV
- name: Update flatpak manifest with commit SHA
run: |
git_hash=$(git rev-parse HEAD)
sed -i "s/branch: master/commit: ${git_hash}/" packaging/flatpak/org.flameshot.Flameshot.yml
echo "=======FLATPAK MANIFEST========"
cat packaging/flatpak/org.flameshot.Flameshot.yml
echo "==============================="
- name: Setup flatpak
run: |
sudo apt-get -y -qq update
Expand Down
Loading