From a4d466e8e147c8f40b92607dcfa855664fdc9f89 Mon Sep 17 00:00:00 2001 From: Weihang Lo Date: Thu, 30 May 2024 11:22:40 -0400 Subject: [PATCH] chore: publish also decodeme and analyzeme in CI --- .github/workflows/publish.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6fdb27f..e0006f6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,4 +14,8 @@ jobs: - name: Publish env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} - run: cargo publish -p measureme + run: | + # Note: Order is important. Leaf packages need to be published first. + cargo publish -p measureme + cargo publish -p decodeme + cargo publish -p analyzeme