mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-17 02:08:30 +00:00
Auto merge of #14757 - azdavis:master, r=lnicola
Fix libs publish branch filter line-index didn't actually get published from #14733, probably because the branch filter was for main but the main branch is called master here. This fixes the workflow file I also tweaked the libs readme mostly just so the paths filter would pick up the changes.
This commit is contained in:
commit
aaf670b649
2 changed files with 7 additions and 4 deletions
4
.github/workflows/publish-libs.yaml
vendored
4
.github/workflows/publish-libs.yaml
vendored
|
@ -3,9 +3,9 @@ on:
|
|||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
paths:
|
||||
- 'lib/**'
|
||||
- "lib/**"
|
||||
|
||||
jobs:
|
||||
publish-libs:
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
Crates in this directory are published to crates.io and obey semver.
|
||||
They *could* live in a separate repo, but we want to experiment with a monorepo setup.
|
||||
# lib
|
||||
|
||||
Crates in this directory are published to [crates.io](https://crates.io) and obey semver.
|
||||
|
||||
They _could_ live in a separate repo, but we want to experiment with a monorepo setup.
|
||||
|
|
Loading…
Reference in a new issue