Package that will iteratively deploy a site to Fleek by gradually committing all changed files to the deploy directory in a dedicated deploy branch.
Requires Node.js 16.
Bonus points: you won't use up your Fleek computation minutes because GitHub (or whatever system you run this package with) will be running your build command!
Fleek can only handle so many bytes per individual deploy, totally failing when that limit is reached. Typically this is issue is avoided by manually committing files gradually, which is a huge pain! This script does it automatically and seamlessly!
This package creates and manages a branch in your repo which Fleek should be configured to deploy from. This package iteratively adds files from your build to that branch and waits for the subsequently triggered Fleek deploy to finish, then adds more files.
Note that you will need to create a new Fleek site for this to work, as that is the only way to configure which branch Fleek deploys from (step 3 below).
npm i -D @toniq-labs/fleek-iterative-deploy
Use GitHub repo secrets to add env variables for GitHub Actions.
See the Obtaining Fleek keys section at the bottom of this README for helping getting the necessary keys.
- Go to your repository
- Click on
Settings
- Click on
Secrets
, thenActions
- Click the
New repository secret
button - Use the key and values:
FLEEK_API_KEY
: this should be an API key generated by Fleek.FLEEK_TEAM_ID
: this should be set to your Fleek team id.FLEEK_SITE_ID
: this should be the id (not name or IC dub domain) for your Fleek site.
- Create, if it doesn't exist already, a branch in your repo named
FLEEK_ITERATIVE_DEPLOY
. - Create a new Fleek site.
- Select your relevant repository.
- Set the deploy branch for this new site to
FLEEK_ITERATIVE_DEPLOY
.
The FLEEK_ITERATIVE_DEPLOY
branch will be managed by this package, you should not edit it. You can customize this branch name via the fleekDeployBranchName
input, as explained in the later Custom inputs section.
Make sure that your Fleek deploy settings do not have a build command. npx @toniq-labs/fleek-iterative-deploy
will run the build command for you.
Make sure your Fleek deploy settings include build
as the "Publish directory" or publicDir
. This package will add files to the build
dir for Fleek to deploy.
The name of this directory can be customized via the fleekPublicDir
input, as explained in the later Custom inputs section.
This package will run npm run build
to build the output which will get deployed to Fleek. This command can be customized via the buildCommand
input, as explained in the later Custom inputs section.
Add a GitHub Actions workflow that triggers when you push to main
(or master
or whatever branch you wish). See an example here: https://github.com/toniq-labs/test-iterative-fleek-deploy/blob/main/.github/workflows/test-fleek-iterative-deploy.yml
As in the example, your workflow must at least do the following:
- set env variables so that this package can access them (see the example file linked above on how to do that, it's the part under
env:
). - run
npx @toniq-labs/fleek-iterative-deploy
In addition to those requirements, it's probably best to also include the following tips. All of these are included in the example file linked above.
- Use concurrency with a static group and
cancel-in-progress
:concurrency: group: 'fleek-deploy' cancel-in-progress: true
- Set
fetch-depth: 0
inactions/checkout@v3
:- uses: actions/checkout@v3 with: fetch-depth: 0
If needed, customize your inputs to npx @toniq-labs/fleek-iterative-deploy
. See the Custom inputs section at the bottom of the page for defaults.
With everything setup in your GitHub action, simply push to your main
branch and the GitHub Action should run and deploy everything automatically!
I haven't found a good way to find Fleek site ids, so here's how to get a list. It'll simply log the list of sites given your env Fleek API key and team id variables.
export FLEEK_API_KEY='insertYourKeyHere'; export FLEEK_TEAM_ID='insertYourTeamIdHere'; npx @toniq-labs/fleek-iterative-deploy --sites
This allows you to test inputs. All inputs will be set and logged but the iterative deploy won't run.
npx @toniq-labs/fleek-iterative-deploy --dry-run
npx @toniq-labs/fleek-iterative-deploy "<buildCommand>" "<fleekPublicDir>" "<fleekDeployBranchName>"
buildCommand
: this is the bash command which@toniq-labs/fleek-iterative-deploy
will run to build your website.fleekPublicDir
: this is the directory which Fleek is configured to deploy files from; this should match thepublicDir
property in a Fleek config file.fleekDeployBranchName
: this is the branch which Fleek will deploy from. This should not be the same as the branch that triggers your GitHub Action (which will probably bemain
ormaster
).
The defaults are listed in the following object:
import {DeployIterativelyInputs} from './iterative-deploy';
export const defaultInputs: Readonly<DeployIterativelyInputs> = {
buildCommand: 'npm run build',
fleekPublicDir: 'build',
fleekDeployBranchName: 'FLEEK_ITERATIVE_DEPLOY',
} as const;
To skip a deploy, add nobuild!
or !nobuild
to your latest commit message before pushing to your branch. This will abort the deploy before it starts.
To force a deploy, add forcefleekdeploy!
or !forcefleekdeploy
to your latest commit message before pushing. This will skip checking if any changes have been made since the last deploy, and just try to deploy everything.
Your Fleek API key must be stored in the FLEEK_API_KEY
env variable before running commands from this package. To get your Fleek API key, do the following:
- Go to the Fleek app
- Login
- Click on your user name in the ver bottom left corner
- Click
Settings
- Click
Generate API
under theHosting API
section. - Copy that value and save it into the env variable
FLEEK_API_KEY
before running any commands from this package.
Your team id must be saved into the FLEEK_TEAM_ID
env variable. To find this do the following:
- Go to the Fleek app
- Login
- Look at the URL
- Copy the id that's after
accountID=
in the URL. - Save this into the
FLEEK_TEAM_ID
env variable before running commands from this package.
The id of the Fleek site you want to operate on must be set in the FLEEK_SITE_ID
env variable. Finding your site's id is a little trickier, in my experience. Luckily, if you have the previous two env variables set already, you can use this package to find your site ids! To find your side id, do the following:
- Make sure you've retrieved the previous two env variables for your team id and API key.
- run
export FLEEK_API_KEY='insertYourKeyHere'; export FLEEK_TEAM_ID='insertYourTeamIdHere'; npx @toniq-labs/fleek-iterative-deploy --sites
- Inspect the stdout output of the command. Find the site with the name you want, then copy its
id
. - Save this id into the
FLEEK_SITE_ID
env variable before running the full iterative deploy command from this package.
The following repos currently use this package to deploy to the IC via Fleek.