Skip to content
Discussion options

You must be logged in to vote

The error you're encountering indicates that the ssh-private-key required by the i2mint/isee/actions/check-in@master GitHub Action is either not set or incorrectly referenced in your workflow. This SSH private key is used to authenticate with GitHub for operations that require a higher level of access, like pushing commits.

Here's how to resolve this:

1. Generate an SSH Key Pair

If you don't already have an SSH key pair that you want to use for this purpose, you can generate one. Here's how to do it on a Unix-like system:

  1. Open a terminal.
  2. Run ssh-keygen -t ed25519 -C "your_email@example.com", replacing your_email@example.com with your email.
  3. When prompted to "Enter a file in which to sav…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by thorwhalen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant