Unnamed repository; edit this file 'description' to name the repository.
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.
bors 2023-05-07
parent 260e996 · parent db40fef · commit aaf670b
-rw-r--r--.github/workflows/publish-libs.yaml4
-rw-r--r--lib/README.md7
2 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/publish-libs.yaml b/.github/workflows/publish-libs.yaml
index c043573cac..6d026c9ad9 100644
--- a/.github/workflows/publish-libs.yaml
+++ b/.github/workflows/publish-libs.yaml
@@ -3,9 +3,9 @@ on:
workflow_dispatch:
push:
branches:
- - main
+ - master
paths:
- - 'lib/**'
+ - "lib/**"
jobs:
publish-libs:
diff --git a/lib/README.md b/lib/README.md
index 6b2eeac2c0..ed55e31d6b 100644
--- a/lib/README.md
+++ b/lib/README.md
@@ -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.