We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e370b commit 49505b8Copy full SHA for 49505b8
.github/workflows/deploy.yml
@@ -1,6 +1,9 @@
1
# GH_TOKEN
2
# NEXUS_USER
3
-# NEXUS_PASS
+# 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);
7
# GPG_PASSPHRASE
8
# GPG_KEY64 (base64)
9
# gpg --export-secret-keys --armor KEY_ID | openssl base64 | pbcopy
0 commit comments