Update On Mon Jul 29 20:33:20 CEST 2024

This commit is contained in:
github-action[bot]
2024-07-29 20:33:21 +02:00
parent 605c64ed9c
commit 1118939622
58 changed files with 863 additions and 1687 deletions
+17
View File
@@ -86,3 +86,20 @@ jobs:
prerelease: true
tauriScript: pnpm tauri
args: -f nightly -c ./backend/tauri/tauri.nightly.conf.json
- name: Calc the archive signature
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
TAG_NAME=${{ inputs.tag }}
find ./backend/target/release/bundle \( -name "*.deb" -o -name "*.rpm" \) | while read file; do
sha_file="$file.sha256"
if [[ ! -f "$sha_file" ]]; then
sha256sum "$file" > "$sha_file"
echo "Created checksum file for: $file"
fi
gh release upload $TAG_NAME "$sha_file" --clobber
echo "Uploaded $sha_file to release $TAG_NAME"
done