From 915a9a20be36bf4c64e31c454ce607e7bcf00d54 Mon Sep 17 00:00:00 2001 From: Dmitry Kolesnikov Date: Sat, 10 Aug 2024 23:59:50 +0300 Subject: [PATCH] fix ci/cd build phase --- .github/workflows/build.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 680cc5d..c37a233 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,14 +41,8 @@ jobs: flag-name: ${{ matrix.module }} parallel: true - finish: - needs: build - runs-on: ubuntu-latest - steps: - - uses: shogo82148/actions-goveralls@v1 - with: - parallel-finished: true - - name: publish + - name: release + working-directory: ${{ matrix.module }} run: | git config user.name "GitHub Actions" git config user.email "github-actions@users.noreply.github.com" @@ -56,3 +50,11 @@ jobs: do git tag $mod 2> /dev/null && git push origin -u $mod 2> /dev/null && echo "[+] $mod" || echo "[ ] $mod" done + + finish: + needs: build + runs-on: ubuntu-latest + steps: + - uses: shogo82148/actions-goveralls@v1 + with: + parallel-finished: true