From 896070528815f7236fa78d573f480b432c52f479 Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia <7854099+viferga@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:42:29 -0400 Subject: [PATCH] Update and rename release.yml to ci.yml --- .github/workflows/{release.yml => ci.yml} | 9 +++++++++ 1 file changed, 9 insertions(+) rename .github/workflows/{release.yml => ci.yml} (79%) diff --git a/.github/workflows/release.yml b/.github/workflows/ci.yml similarity index 79% rename from .github/workflows/release.yml rename to .github/workflows/ci.yml index c047863..d2a7284 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,14 @@ name: "MetaCall Distributable Windows Release" on: + repository_dispatch: + types: [test-trigger] + pull_request: push: tags: - 'v*.*.*' + branches: + - master jobs: build: @@ -13,13 +18,17 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 with: arch: amd64 + - name: Build shell: powershell run: .\build.bat + - name: Test shell: powershell run: .\test.bat + - name: Release + if: startsWith(github.ref, 'refs/tags/v') uses: softprops/action-gh-release@v1 with: files: metacall-tarball-win-x64.zip