Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
chevrons-up

GitHub Action

TurboRepo with github artifacts

v1.1.0

TurboRepo with github artifacts

chevrons-up

TurboRepo with github artifacts

Setup up a local cache proxy server for TurboRepo

Installation

Copy and paste the following snippet into your .yml file.

              

- name: TurboRepo with github artifacts

uses: felixmosh/[email protected]

Learn more about this action in felixmosh/turborepo-gh-artifacts

Choose a version

TurboRepo Github Artifacts action

This action allows you to use Github artifacts as TurboRepo remote cache server.

How it works?

It's starts a local TurboRepo server (on port 9080) and uses Github artifacts as a caching storage.

Setup

  1. Add in your workflow.yml the following section before TurboRepo runs:
- name: TurboRepo local server
  uses: felixmosh/turborepo-gh-artifacts@v1
  with:
    repo-token: ${{ secrets.GITHUB_TOKEN }}
    server-token: ${{ secrets.TURBO_SERVER_TOKEN }}
  1. Make turbo repo work with the local server
- name: Build
  run: yarn build --api="http://127.0.0.1:9080" --token="${{ secrets.TURBO_SERVER_TOKEN }}" --team="foo"

That's it 😋.

Action inputs

The action has 2 required inputs:

  1. repo-token - A Github token with repo permission, usually the default secrets.GITHUB_TOKEN is enough.
  2. server-token - An auth token to ensure that your code interacting with the local server.

Pay ❤️, GITHUB_TOKEN must have actions: read permissions in order to be able to read repo's existing artifacts.

Working Example

Working example of the entire setup, based on npx create-turbo@latest.

Useful Links