Skip to content

Commit 49505b8

Browse files
committed
Improve deploy.yml docs since we're actually using Base64.
1 parent 49e370b commit 49505b8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# GH_TOKEN
22
# NEXUS_USER
3-
# NEXUS_PASS
3+
# NEXUS_PASS64 (base64 NOTE: `base64` and `openssl base64` failed, had to use Java
4+
# byte[] data = "{{password}}".getBytes(StandardCharsets.UTF_8);
5+
# String encoded = new String(Base64.getEncoder().encode(data), StandardCharsets.UTF_8);
6+
# System.out.println(encoded);
47
# GPG_PASSPHRASE
58
# GPG_KEY64 (base64)
69
# gpg --export-secret-keys --armor KEY_ID | openssl base64 | pbcopy

0 commit comments

Comments
 (0)