From 476469c488f0e031a8b6733194efa08046ada0a8 Mon Sep 17 00:00:00 2001 From: fi3 Date: Thu, 15 Feb 2024 14:40:24 +0100 Subject: [PATCH] Bumb version numnber so that we can test if cargo release from github works --- .github/workflows/release-libs.yaml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release-libs.yaml b/.github/workflows/release-libs.yaml index d686b12daf..f3fcb534dc 100644 --- a/.github/workflows/release-libs.yaml +++ b/.github/workflows/release-libs.yaml @@ -11,32 +11,18 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - workspace: [protocols, utils] + workspace: [protocols, utils,common] steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - - name: Login run: cargo login ${{ secrets.CRATES_IO_DEPLOY_KEY }} - - name: Install cargo-release run: cargo install cargo-release - name: Publish crates from ${{ matrix.workspace }} run: | cd ${{ matrix.workspace }} - cargo release -x - common_publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - name: Publish standalone crate - run: | - cd ./common - cargo release -x + cargo release -x --all-features --no-confirm