You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure to store your sensitive information (such as the config, certificate, and certificate_name) as secrets in your GitHub repository to keep them secure.
24
+
Make sure to store your sensitive information (such as the config, certificate, and certificate_name) as secrets in your GitHub repository to keep them secure.
25
25
26
-
For more information on how to use this action, please refer to the [GitHub Action documentation](https://docs.github.com/actions).
26
+
The certificate will need to be converted to base 64 before you can save the value as a GitHub secret.
27
+
28
+
```shell
29
+
# Mac/Linux
30
+
base64 <file_name> > output.txt
31
+
32
+
# Windows
33
+
certutil -encode <file_name> output.txt
34
+
```
35
+
Replace `<file_name>` with the name of the file you want to encode. The encoded output will be saved in `output.txt`.
36
+
37
+
Remember to replace `<file_name>` with the actual name of the file you want to encode.
27
38
39
+
For more information on how to use this action, please refer to the [GitHub Action documentation](https://docs.github.com/actions).
0 commit comments