diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml new file mode 100644 index 0000000..8b26370 --- /dev/null +++ b/.github/workflows/post-release.yml @@ -0,0 +1,23 @@ +name: Test Windows Install Script with new release + +on: + workflow_run: + workflows: ["MetaCall Distributable Windows Release"] + types: + - completed + +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-windows.yml + wait_workflow: true + ref: master + +