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