From 52897236ffb547ba90e54d3b43003fd7c5eafa3c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 24 Oct 2024 20:24:42 -0700 Subject: [PATCH] ci: fix signing --- .github/workflows/release-tip.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-tip.yml b/.github/workflows/release-tip.yml index 21ccd943d..f92a457a0 100644 --- a/.github/workflows/release-tip.yml +++ b/.github/workflows/release-tip.yml @@ -111,8 +111,8 @@ jobs: MINISIGN_PASSWORD: ${{ secrets.MINISIGN_PASSWORD }} MINISIGN_KEY: ${{ secrets.MINISIGN_KEY }} run: | - echo $MINISIGN_KEY > minisign.key - echo $MINISIGN_PASSWORD > minisign.password + echo -n $MINISIGN_KEY > minisign.key + echo -n $MINISIGN_PASSWORD > minisign.password nix develop -c minisign -S -m ghostty-source.tar.gz -s minisign.key < minisign.password - name: Update Release uses: softprops/action-gh-release@v2