mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
:electron: Fix sha256 workflow (#6545)
* fix sha256 * release notes * metainfo warning on flathub * remove vcs browser - will deal with that later
This commit is contained in:
4
.github/workflows/electron-master.yml
vendored
4
.github/workflows/electron-master.yml
vendored
@@ -171,8 +171,8 @@ jobs:
|
||||
- name: Calculate AppImage SHA256
|
||||
id: appimage_sha256
|
||||
run: |
|
||||
APPIMAGE_X64_SHA256=$(sha256sum packages/desktop-electron/dist/Actual-linux-x86_64.AppImage | awk '{ print $1 }')
|
||||
APPIMAGE_ARM64_SHA256=$(sha256sum packages/desktop-electron/dist/Actual-linux-arm64.AppImage | awk '{ print $1 }')
|
||||
APPIMAGE_X64_SHA256=$(sha256sum Actual-linux-x86_64.AppImage | awk '{ print $1 }')
|
||||
APPIMAGE_ARM64_SHA256=$(sha256sum Actual-linux-arm64.AppImage | awk '{ print $1 }')
|
||||
echo "APPIMAGE_X64_SHA256=$APPIMAGE_X64_SHA256" >> "$GITHUB_ENV"
|
||||
echo "APPIMAGE_ARM64_SHA256=$APPIMAGE_ARM64_SHA256" >> "$GITHUB_ENV"
|
||||
|
||||
|
||||
6
upcoming-release-notes/6545.md
Normal file
6
upcoming-release-notes/6545.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [MikesGlitch]
|
||||
---
|
||||
|
||||
Fix electron master publish to flathub caused by hashes calculation
|
||||
Reference in New Issue
Block a user