Skip to content

Commit 5a4ce32

Browse files
authored
Merge pull request #1 from guardian/move-to-guardian-owner
This project is moving to /guardian
2 parents 290ad2b + 3f9d1ee commit 5a4ce32

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and this user config file in your home directory at `~/.config/devenv/devenv.yam
1717

1818
```yaml
1919
dotfiles:
20-
repository: https://github.com/adamnfish/dotfiles.git
20+
repository: https://github.com/username/dotfiles.git
2121
targetPath: ~/.dotfiles
2222
installCommand: ./install.sh
2323
plugins:
@@ -139,7 +139,7 @@ The project uses GitHub Actions to build and publish native binaries for macOS A
139139

140140
#### Creating a release
141141

142-
1. Go to the [Actions tab](https://github.com/adamnfish/devenv/actions/workflows/release.yml) on GitHub
142+
1. Go to the [Actions tab](https://github.com/guardian/devenv/actions/workflows/release.yml) on GitHub
143143

144144
2. Click "Run workflow" and select the branch to build from
145145

@@ -155,7 +155,7 @@ The project uses GitHub Actions to build and publish native binaries for macOS A
155155
- Upload it to the draft release, replacing the unsigned binary
156156

157157
5. **Manually verify and publish the release:**
158-
- Go to the [Releases page](https://github.com/adamnfish/devenv/releases) on GitHub
158+
- Go to the [Releases page](https://github.com/guardian/devenv/releases) on GitHub
159159
- Review the draft release
160160
- Test the binaries if needed
161161
- Click "Publish release" when ready
@@ -201,6 +201,6 @@ Users can install a release binary with the following command (replace `<latest-
201201

202202
```bash
203203
VERSION=<latest-release-version>
204-
curl -L -o ~/.local/bin/devenv https://github.com/adamnfish/devenv/releases/download/$VERSION/devenv-$VERSION-macos-arm64
204+
curl -L -o ~/.local/bin/devenv https://github.com/guardian/devenv/releases/download/$VERSION/devenv-$VERSION-macos-arm64
205205
chmod +x ~/.local/bin/devenv
206206
```

cli/src/main/scala/com/gu/devenv/Releases.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import scala.util.{Failure, Success, Try}
1717
* See https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28
1818
*/
1919
object Releases {
20-
private val OWNER = "adamnfish"
20+
private val OWNER = "guardian"
2121
private val REPO = "devenv"
2222
private val API_URL =
2323
s"https://api.github.com/repos/$OWNER/$REPO/releases/latest"

cli/src/test/scala/com/gu/devenv/ReleasesTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ReleasesTest extends AnyFreeSpec with Matchers with ScalaCheckPropertyChec
1919
digest = "sha256:abc123"
2020
)
2121
),
22-
htmlUrl = "https://github.com/adamnfish/devenv/releases/tag/20250115-120000"
22+
htmlUrl = "https://github.com/guardian/devenv/releases/tag/20250115-120000"
2323
)
2424

2525
"Releases.checkForUpdate" - {

0 commit comments

Comments
 (0)