Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nnsnodnb
Created December 15, 2020 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nnsnodnb/67dc6f12bbddd3cf2ae0182a9a895243 to your computer and use it in GitHub Desktop.
Save nnsnodnb/67dc6f12bbddd3cf2ae0182a9a895243 to your computer and use it in GitHub Desktop.
GitHub Actions に暗号ファイルを載せる
#!/bin/bash -e
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_PASS_PHRASE" --output /path/to/output_file /path/to/encrypted_file
#!/bin/bash -e
gpg --symmetric --cipher-algo AES256 /path/to/plain_file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment