Skip to content

GitHub Actions for checkout with external (non-GitHub) LFS storage

License

Notifications You must be signed in to change notification settings

natsuneko-laboratory/checkout-lfs

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@natsuneko-laboratory/checkout-lfs

GitHub Actions for checkout with external (non-GitHub) LFS storage

Properties

Property Type Required Description
url string Yes URL of external LFS storage (or proxy)
auth boolean No (default: false) Set to true if the url is required authentication
credential string No (default: null) Set to credential if the auth set to true

Usage

name: "CI"

on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          lfs: false

      - uses: natsuneko-laboratory/checkout-lfs@v1.0.0
        with:
          url: https://git-lfs.natsuneko.moe
          auth: true
          credential: $GITHUB_TOKEN

License

MIT by @6jz