From 84db79e97cbc6b97b72b47e932a8ce96aad527e3 Mon Sep 17 00:00:00 2001 From: tu6ge Date: Tue, 21 May 2024 18:54:22 +0800 Subject: [PATCH] chore: publish-action --- .github/workflows/publish.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2335467..56d1bd1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -61,13 +61,21 @@ jobs: cd oss_derive cargo test cargo test --features blocking + + - name: Run publish-action of derive + run: publish-action --dir="/oss_derive/" --tag_prefix="derive_" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} - - name: Run publish-action - run: publish-action -c "" + - name: Run publish-action of oss + run: publish-action --dir="/" --tag_prefix="v" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + + grcov: name: Coverage and Grcov runs-on: ubuntu-latest