Skip to content

Commit 7818764

Browse files
committed
ci: use nix develop for sha256sum in release workflow
Fix missing sha256sum command in nix environment by wrapping it with nix develop.
1 parent d638fe6 commit 7818764

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
mkdir -p artifacts
138138
cp result/bin/termcopy artifacts/termcopy-${{ matrix.target }}
139139
cd artifacts
140-
sha256sum termcopy-${{ matrix.target }} > termcopy-${{ matrix.target }}.sha256
140+
nix develop --command sha256sum termcopy-${{ matrix.target }} > termcopy-${{ matrix.target }}.sha256
141141
142142
- name: Upload Release Asset
143143
uses: actions/upload-release-asset@v1

0 commit comments

Comments
 (0)