Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: stable
cache: true
Expand All @@ -41,8 +41,8 @@ jobs:
name: staticcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: stable
cache: true
Expand All @@ -53,8 +53,8 @@ jobs:
name: govulncheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: stable
cache: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-go@v5
- uses: actions/setup-go@v7
with:
go-version: stable
- uses: goreleaser/goreleaser-action@v7
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ All notable changes are documented here, following

## [Unreleased]

## [0.1.0] - 2026-07-24

First tagged release. Distributed as prebuilt binaries, a Homebrew cask, a Scoop
manifest, and `go install`.

### Added
- Go and web/Node stacks (detector + driver, no new dependencies). Go: `go.mod`
detection (app vs library), running `go mod download`, `go vet` + `gofmt -l`,
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@ Gatsby). Adding another is one driver. See

anvil is a single static binary.

### Homebrew (macOS and Linux)

```bash
brew install --cask openforge-oss/tap/anvil
```

### Scoop (Windows)

```powershell
scoop bucket add openforge-oss https://github.com/openforge-oss/scoop-bucket
scoop install anvil
```

### Prebuilt binary

Download the archive for your OS and architecture from the
Expand All @@ -57,7 +70,7 @@ it, and put `anvil` on your `PATH`.
go install github.com/openforge-oss/anvil@latest
```

Homebrew and Scoop distribution is wired and lands in the next release.
Installs to `$(go env GOPATH)/bin`, which must be on your `PATH`.

## Usage

Expand Down