Skip to content

Commit aaf670b

Browse files
committed
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.
2 parents 260e996 + db40fef commit aaf670b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/publish-libs.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ on:
33
workflow_dispatch:
44
push:
55
branches:
6-
- main
6+
- master
77
paths:
8-
- 'lib/**'
8+
- "lib/**"
99

1010
jobs:
1111
publish-libs:

lib/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
Crates in this directory are published to crates.io and obey semver.
2-
They *could* live in a separate repo, but we want to experiment with a monorepo setup.
1+
# lib
2+
3+
Crates in this directory are published to [crates.io](https://crates.io) and obey semver.
4+
5+
They _could_ live in a separate repo, but we want to experiment with a monorepo setup.

0 commit comments

Comments
 (0)