Quick Start
This guide will help you quickly set up Typper Figma Plugin Deploy to automate your Figma plugin deployment.Initial Setup
1. Prepare Your Repository
Make sure your Figma plugin project is in a GitHub repository and has a validmanifest.json file.
2. Configure Secrets
In your GitHub repository, go to Settings > Secrets and Variables > Actions and add the following secrets:The TOTP secret is required for two-factor authentication. See the
Authentication guide for more details.
3. Create the Workflow
Create a.github/workflows/deploy.yml file in your repository with the following content:
Replace
your-plugin-id and your-team-id with your actual Figma plugin and
team IDs.Testing the Deployment
- Make a commit and push to the main branch
- Go to the Actions tab in your GitHub repository
- You’ll see the “Deploy Figma Plugin” workflow running
- After completion, verify your plugin in Figma
Next Steps
Troubleshooting
If you encounter any issues during setup:- Verify all secrets are configured correctly
- Confirm your plugin and team IDs are correct
- Check the logs in the Actions tab for details
- Consult our authentication documentation for credential-related issues