Skip to content

Commit

Permalink
Post Release Workflow to test install scripts (#12)
Browse files Browse the repository at this point in the history
Triggers the test-linux.yml file in metacall/install

The failure of this workflow doesnt interfere with the release
  • Loading branch information
roysti10 authored Nov 21, 2022
1 parent ee329b7 commit 2b6363e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: "MetaCall Distributable Linux Release"

on:
push:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test Linux Install Script with new release

on:
workflow_run:
workflows: ["MetaCall Distributable Linux Release"]
types:
- completed

jobs:
test:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: convictional/[email protected]
with:
owner: metacall
repo: install
github_token: ${{ secrets.G_PERSONAL_ACCESS_TOKEN }}
workflow_file_name: test-linux.yml
wait_workflow: true
ref: master


0 comments on commit 2b6363e

Please sign in to comment.