Skip to content

Commit

Permalink
change sha256 file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
oxmc committed Dec 20, 2024
1 parent e4ca988 commit 3d67f6d
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Download appimagelint and its deps
run: |
sudo apt install fuse -y
sudo apt update && sudo apt install fuse -y
wget https://github.com/TheAssassin/appimagelint/releases/download/continuous/appimagelint-x86_64.AppImage
chmod +x appimagelint-x86_64.AppImage
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Generate checksum
run: |
sha256sum dist/*.AppImage > sha256sum.txt
sha256sum dist/*.AppImage > dist/sha256sum.txt
- name: Upload Linux Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -58,7 +58,7 @@ jobs:
path: |
dist/*.AppImage
dist/latest*.yml
sha256sum.txt
dist/sha256sum.txt
build-windows:
name: Build bsky-desktop (Windows)
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- name: Generate checksum
run: |
sha256sum dist/*.exe > sha256sum.txt
sha256sum dist/*.exe > dist/sha256sum.txt
- name: Upload Windows Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -97,7 +97,7 @@ jobs:
path: |
dist/*.exe
dist/latest*.yml
sha256sum.txt
dist/sha256sum.txt
build-macos:
name: Build bsky-desktop (macOS)
Expand Down Expand Up @@ -126,8 +126,7 @@ jobs:

- name: Generate checksum
run: |
shasum -a 256 dist/*.dmg > sha256sum.txt
# shasum -a 256 dist/*.pkg >> sha256sum.txt
shasum -a 256 dist/*.dmg > dist/sha256sum.txt
- name: Upload macOS Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -137,7 +136,7 @@ jobs:
path: |
dist/*.dmg
dist/latest*.yml
sha256sum.txt
dist/sha256sum.txt
release:
name: Create Release
Expand Down

0 comments on commit 3d67f6d

Please sign in to comment.