change sha256 file paths

This commit is contained in:
oxmc
2024-12-20 08:36:27 -08:00
parent e4ca9882b9
commit 3d67f6d5ae

View File

@@ -39,7 +39,7 @@ jobs:
- name: Download appimagelint and its deps - name: Download appimagelint and its deps
run: | 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 wget https://github.com/TheAssassin/appimagelint/releases/download/continuous/appimagelint-x86_64.AppImage
chmod +x appimagelint-x86_64.AppImage chmod +x appimagelint-x86_64.AppImage
@@ -48,7 +48,7 @@ jobs:
- name: Generate checksum - name: Generate checksum
run: | run: |
sha256sum dist/*.AppImage > sha256sum.txt sha256sum dist/*.AppImage > dist/sha256sum.txt
- name: Upload Linux Artifacts - name: Upload Linux Artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
@@ -58,7 +58,7 @@ jobs:
path: | path: |
dist/*.AppImage dist/*.AppImage
dist/latest*.yml dist/latest*.yml
sha256sum.txt dist/sha256sum.txt
build-windows: build-windows:
name: Build bsky-desktop (Windows) name: Build bsky-desktop (Windows)
@@ -87,7 +87,7 @@ jobs:
- name: Generate checksum - name: Generate checksum
run: | run: |
sha256sum dist/*.exe > sha256sum.txt sha256sum dist/*.exe > dist/sha256sum.txt
- name: Upload Windows Artifacts - name: Upload Windows Artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
@@ -97,7 +97,7 @@ jobs:
path: | path: |
dist/*.exe dist/*.exe
dist/latest*.yml dist/latest*.yml
sha256sum.txt dist/sha256sum.txt
build-macos: build-macos:
name: Build bsky-desktop (macOS) name: Build bsky-desktop (macOS)
@@ -126,8 +126,7 @@ jobs:
- name: Generate checksum - name: Generate checksum
run: | run: |
shasum -a 256 dist/*.dmg > sha256sum.txt shasum -a 256 dist/*.dmg > dist/sha256sum.txt
# shasum -a 256 dist/*.pkg >> sha256sum.txt
- name: Upload macOS Artifacts - name: Upload macOS Artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
@@ -137,7 +136,7 @@ jobs:
path: | path: |
dist/*.dmg dist/*.dmg
dist/latest*.yml dist/latest*.yml
sha256sum.txt dist/sha256sum.txt
release: release:
name: Create Release name: Create Release