From f4ef24420d9688845c7e81087b3b15bbd220111a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hermann=20H=C3=B6hne?= Date: Fri, 24 May 2024 23:45:39 +0200 Subject: [PATCH] Try releasing within the same runner. --- .github/workflows/build.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 28ecaf9..d159575 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,16 +46,10 @@ jobs: with: path: build/src/c/libwhatsmeow.dll name: libwhatsmeow.dll - - release: - if: contains(github.ref, 'tags/v') - runs-on: ubuntu-latest - needs: build - - steps: - - uses: actions/checkout@v4 # so CHANGELOG.md is available - - uses: ncipollo/release-action@v1 + - name: Create Release + if: contains(github.ref, 'tags/v') + uses: ncipollo/release-action@v1 with: artifacts: libwhatsmeow.dll bodyFile: CHANGELOG.md