Skip to content

Commit f572d31

Browse files
committed
Revert "[actions] fail cryptsetup-askpass job if ssh or cryptsetup fails"
This reverts commit ffef49a. Currently this will always fail. We need to wait until NixOS/nixpkgs#296452 is implemented until we can activate proper error handling here.
1 parent 6d76899 commit f572d31

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/cryptsetup-askpass.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ jobs:
2727
- shell: bash
2828
env:
2929
LUKS_PASSPHRASE: ${{ secrets.LUKS_PASSPHRASE }}
30-
run: echo "$LUKS_PASSPHRASE" | ssh [email protected] cryptsetup-askpass
30+
# TODO: Make this step fail if the luks device could not be opened
31+
run: echo "$LUKS_PASSPHRASE" | ssh [email protected] cryptsetup-askpass || true

0 commit comments

Comments
 (0)