Meilisearch: 1. Create an access token and store it as a CI secret

This documentation is part of the GitHub Actions & GitLab CI guide. View the full guide here: Spin up a real Meilisearch service from your GitHub Actions or GitLab CI pipeline, run your tests against it, and tear it down automatically.

Welcome to the Stackhero documentation!

If you need a fast, typo-tolerant search engine that is easy to deploy, Stackhero's Meilisearch cloud service lets you get started in minutes. Here is what you get:

  • Custom domain support with integrated HTTPS for secure access.
  • Simple, one-click updates. No manual work is needed.
  • Consistent performance and strong isolation with your own private, dedicated infrastructure.

You can be up and running with Meilisearch cloud hosting on Stackhero in just 5 minutes. The setup is designed to save you time and keep your deployment straightforward.

To enable the CLI to work non-interactively, you will need an access token (format: usr-xxxxxx:tokenId). You only need to create this token once and then add it to your CI pipeline as a secure, encrypted secret.

  1. Create the token: In your Stackhero dashboard, click your profile picture at the top right, go to Your account, then Access tokens, and click Create token.
  2. For GitHub Actions: In your repository, go to Settings > Secrets and variables > Actions > New repository secret, and enter the token as STACKHERO_TOKEN.
  3. For GitLab CI: In your project, go to Settings > CI/CD > Variables > Add variable, set the key to STACKHERO_TOKEN, and check Masked (and Protected if your CI runs only on protected branches).

Do not include your access token directly in your pipeline YAML file. If it is present in YAML, it could be exposed to anyone with repository access and may appear in build logs. Storing it as a CI secret keeps it encrypted and masked, ensuring your token stays secure.