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
9 changes: 3 additions & 6 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ on:
push:
branches: [main]

env:
# actions/upload-artifact@v5 and download-artifact@v5 still run on Node
# 20. Forcing Node 24 here silences the deprecation notice.
# https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

permissions:
contents: read

Expand All @@ -38,6 +32,9 @@ jobs:
runs-on: ubuntu-24.04
permissions:
contents: write
concurrency:
group: release-plz-release-${{ github.ref }}
cancel-in-progress: false
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,20 +285,3 @@ jobs:
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish --locked

announce:
needs:
- plan
- host
- publish-crates-io
# use "always() && ..." to allow us to wait for all publish jobs while
# still allowing individual publish jobs to skip themselves (for prereleases).
# "host" however must run to completion, no skipping allowed!
if: ${{ always() && needs.host.result == 'success' && (needs.publish-crates-io.result == 'success' || needs.publish-crates-io.result == 'skipped') }}
runs-on: "ubuntu-24.04"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v5
with:
submodules: recursive
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ tests/ Black-box integration tests per feature
(selectors, regex, context, stdin, multi_file, …).

benches/large_file.rs Criterion micro-benchmarks for the streaming path.
docs/ User docs: README index, USAGE, ARCHITECTURE;
superpowers/ holds optional design session notes.
docs/ User docs: README index, USAGE, ARCHITECTURE.
```

See [`docs/README.md`](docs/README.md) for the full documentation index and
Expand Down
Loading
Loading