Skip to content

Commit eb82754

Browse files
committed
Repo name
1 parent af5ff3f commit eb82754

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
fetch-depth: 0 # full history needed for cache lookup
3232

33-
- uses: joshfriend/bundle-cache@v1 # restores cache here
33+
- uses: block/bundle-cache@v1 # restores cache here
3434

3535
- run: ./gradlew assembleDebug # your build
3636

@@ -82,7 +82,7 @@ with S3 or a cachew server as the storage backend.
8282
## Installation
8383

8484
```sh
85-
curl -fsSL https://raw.githubusercontent.com/joshfriend/bundle-cache/main/scripts/install.sh | sh
85+
curl -fsSL https://raw.githubusercontent.com/block/bundle-cache/main/scripts/install.sh | sh
8686
```
8787

8888
This installs the latest release to `~/.local/bin`. Set `INSTALL_DIR` to override the destination, or `VERSION` to pin a specific release tag.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >
33
Save and restore Gradle build caches using bundle-cache.
44
Restores a cache bundle before the build and automatically saves it afterward.
55
Uses the GitHub Actions cache by default — no S3 setup required.
6-
author: joshfriend
6+
author: block
77
branding:
88
icon: archive
99
color: green

gradle-cache.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ channel "latest" {
2929
version = "*"
3030

3131
auto-version {
32-
github-release = "joshfriend/bundle-cache"
32+
github-release = "block/bundle-cache"
3333
version-pattern = "v(.*)"
3434
}
3535
}

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/sh
22
# Install gradle-cache. Usage:
3-
# curl -fsSL https://raw.githubusercontent.com/joshfriend/bundle-cache/main/scripts/install.sh | sh
3+
# curl -fsSL https://raw.githubusercontent.com/block/bundle-cache/main/scripts/install.sh | sh
44
#
55
# Environment variables:
66
# VERSION - specific release tag to install (default: latest)
77
# INSTALL_DIR - installation directory (default: ~/.local/bin)
88
set -e
99

10-
REPO="joshfriend/bundle-cache"
10+
REPO="block/bundle-cache"
1111
BINARY="gradle-cache"
1212
INSTALL_DIR="${INSTALL_DIR:-$HOME/.local/bin}"
1313

0 commit comments

Comments
 (0)