From 12a443b2f49d507802831826f0939ad371b6380e Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia <7854099+viferga@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:39:15 -0400 Subject: [PATCH] Create post-release.yml --- .github/workflows/post-release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/post-release.yml diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml new file mode 100644 index 0000000..2fa4184 --- /dev/null +++ b/.github/workflows/post-release.yml @@ -0,0 +1,22 @@ +name: Test MacOS Install Script with new Release + +on: + workflow_run: + workflows: ["MetaCall Distributable MacOS Release"] + types: + - completed + branches: ['v*.*.*'] + +jobs: + test: + runs-on: ubuntu-latest + if: ${{ github.event.workflow_run.conclusion == 'success' }} + steps: + - uses: convictional/trigger-workflow-and-wait@v1.6.1 + with: + owner: metacall + repo: install + github_token: ${{ secrets.G_PERSONAL_ACCESS_TOKEN }} + workflow_file_name: test-macos.yml + wait_workflow: true + ref: master