diff options
| author | Tranch <tranch.xiao@gmail.com> | 2026-02-04 23:39:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-04 23:39:48 +0800 |
| commit | 76aacf956764cfeded90916043abbca5fc220f0b (patch) | |
| tree | 5bafef22c2f107026ada92c751364a602d125227 /.github | |
| parent | ceb367fa1fdf05422e8d990903ec8426501b8a51 (diff) | |
| parent | e5dad45badbb2bb2f15b828140a35ae7cfc82f77 (diff) | |
| download | decky-installer-76aacf956764cfeded90916043abbca5fc220f0b.tar.gz decky-installer-76aacf956764cfeded90916043abbca5fc220f0b.zip | |
Merge pull request #2 from AeroCore-IO/copilot/add-custom-store-address-handling
Simplify checksum verification to use sha256sum directly
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release-on-tag.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/release-on-tag.yml b/.github/workflows/release-on-tag.yml index fb8c021..92dc816 100644 --- a/.github/workflows/release-on-tag.yml +++ b/.github/workflows/release-on-tag.yml @@ -25,6 +25,10 @@ jobs: sed -i "s|__DECKY_PLUGIN_ID__|${PLUGIN_ID}|g" user_install_script.sh sed -i "s|__DECKY_MIRROR_HOST__|$MIRROR_HOST|g" decky_installer.desktop + - name: Generate checksum for decky_client.py + run: | + sha256sum decky_client.py > decky_client.py.sha256 + - name: Create GitHub release uses: softprops/action-gh-release@v2 with: @@ -32,5 +36,6 @@ jobs: tag_name: ${{ github.ref_name }} files: | user_install_script.sh - decky_plugin_installer.py + decky_client.py + decky_client.py.sha256 decky_installer.desktop |
