diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 50f54c0..567d247 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -72,7 +72,12 @@ jobs: # start of the file. # 4. Remove the 1st version heading. # This leaves the content of the release notes for the current release. - run: grep -P -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" doc/src/release-notes.md | sed '$d' | grep -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" | sed '1d' | tee "${GITHUB_WORKSPACE}/release-notes.md" + run: > + grep -P -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" doc/src/release-notes.md | + sed '$d' | + grep -P -A 10000 "^## v*\d*\.\d*\.\d*" | + sed '1d' | + tee "${GITHUB_WORKSPACE}/release-notes.md" working-directory: code - uses: actions/upload-artifact@v4.3.3 diff --git a/doc/src/guide/install.md b/doc/src/guide/install.md index 482d97e..432edd5 100644 --- a/doc/src/guide/install.md +++ b/doc/src/guide/install.md @@ -2,7 +2,14 @@ ## Installing binaries with conda -*Coming soon...* +**Row** is available on [conda-forge] for the *linux-64*, *linux-aarch64*, *osx-64*, +*osx-arm64* architectures. Install with: + +```bash +mamba install row +``` + +[conda-forge]: https://conda-forge.org/ ## Installing binaries manually