Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/natsuneko-laboratory/checkout-lfs
GitHub Actions for checkout with external (non-GitHub) LFS storage
https://github.com/natsuneko-laboratory/checkout-lfs
git git-lfs github-actions
Last synced: 4 days ago
JSON representation
GitHub Actions for checkout with external (non-GitHub) LFS storage
- Host: GitHub
- URL: https://github.com/natsuneko-laboratory/checkout-lfs
- Owner: natsuneko-laboratory
- License: mit
- Created: 2022-12-29T05:47:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T12:38:19.000Z (about 2 years ago)
- Last Synced: 2024-11-10T08:17:44.878Z (2 months ago)
- Topics: git, git-lfs, github-actions
- Language: TypeScript
- Homepage: https://docs.natsuneko.cat/en-us/checkout-lfs/
- Size: 182 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @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
```yaml
name: "CI"on:
push:jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: false- uses: natsuneko-laboratory/[email protected]
with:
url: https://git-lfs.natsuneko.moe
auth: true
credential: $GITHUB_TOKEN
```## License
MIT by [@6jz](https://twitter.com/6jz)