#Key setup

There are 3 different ways you can add a key to your project:

#Option 1: Use retype wallet

To use the key on your local development computer, run the following command and replace the <key> with your Retype Key.

retype wallet --add <key>

#Option 2: --key command line flag

You can pass the key as a command line option by calling:

retype build --key <key>

#Option 3: RETYPE_KEY environment variable

The key can be added as an Environment Variable, which is recommended for building and hosting on services such as GitHub Pages, Netlify, and Cloudflare.

Then add RETYPE_KEY secret to your GitHub Actions file:

- uses: retypeapp/action-build@latest with: key: ${{ secrets.RETYPE_KEY }}