Skip to content

Commit

Permalink
fix typo in asc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Glonek committed Dec 11, 2024
1 parent a6f02d4 commit 29dfa10
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/create-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,16 +230,19 @@ jobs:
run: |
cd Rlinux
ls |while read file; do
echo "Generating asc for ${file}"
gpg --detach-sign --no-tty --batch --yes --output "${file}.asc" --passphrase "$GPG_PASSPHRASE" "${file}" || exit 1
gpg --verify "${file}.asc" "${file}" &>/dev/null || exit 1
done
cd cd ../Rwindows
cd ../Rwindows
ls |while read file; do
echo "Generating asc for ${file}"
gpg --detach-sign --no-tty --batch --yes --output "${file}.asc" --passphrase "$GPG_PASSPHRASE" "${file}" || exit 1
gpg --verify "${file}.asc" "${file}" &>/dev/null || exit 1
done
cd ../Rdarwin
ls |while read file; do
echo "Generating asc for ${file}"
gpg --detach-sign --no-tty --batch --yes --output "${file}.asc" --passphrase "$GPG_PASSPHRASE" "${file}" || exit 1
gpg --verify "${file}.asc" "${file}" &>/dev/null || exit 1
done
Expand Down

0 comments on commit 29dfa10

Please sign in to comment.