Cache Nix derivations on GitHub Actions with Attic.
Find a file
dependabot[bot] 88dbb4b600
chore(deps): bump actions/checkout from 3 to 4 (#6)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-10 04:24:06 +00:00
.github chore(deps): bump actions/checkout from 3 to 4 (#6) 2023-09-10 04:24:06 +00:00
src fix: save store paths to file (#5) 2023-08-06 02:32:52 +00:00
.gitignore add nixpkgs? 2023-07-19 10:37:21 +08:00
.node-version feat: initial commit 2023-07-18 22:17:42 +08:00
.prettierignore feat: auto push store paths and add CI (#1) 2023-07-19 09:53:49 +08:00
.prettierrc feat: add release workflow (#2) 2023-07-19 02:51:10 +00:00
action.yml improve action.yml 2023-07-20 09:08:36 +08:00
flake.lock chore: update flake lock 2023-07-21 21:42:33 +08:00
flake.nix chore: don't use channels for testing (#3) 2023-07-21 03:38:26 +00:00
LICENSE feat: initial commit 2023-07-18 22:17:42 +08:00
package.json fix: split up added paths to avoid argument limit 2023-08-04 20:40:01 +08:00
pnpm-lock.yaml fix: split up added paths to avoid argument limit 2023-08-04 20:40:01 +08:00
README.md docs: improve README 2023-07-21 16:11:50 +08:00
tsconfig.json feat: add release workflow (#2) 2023-07-19 02:51:10 +00:00

attic-action

Cache Nix derivations with Attic.

Usage

Configure your attic instance with an endpoint, a cache, and a token that can read from and write to the cache. Then, add this step to a workflow job after Nix is installed:

- name: Setup Attic cache
  uses: ryanccn/attic-action@v0
  with:
    endpoint: ${{ secrets.ATTIC_ENDPOINT }}
    cache: ${{ secrets.ATTIC_CACHE }}
    token: ${{ secrets.ATTIC_TOKEN }}

Inputs

endpoint

The Attic endpoint. This is the URL without the cache name.

cache

The name of the Attic cache.

token

The authorization token to provide to Attic (optional).

skip-push

Disable pushing new derivations to the cache automatically at the end of the job (default is false).

This requires you to invoke attic push <cache> with the paths you want to push to the cache manually.

Outputs

None

License

MIT