-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Post Release Workflow to test install scripts (#12)
Triggers the test-linux.yml file in metacall/install The failure of this workflow doesnt interfere with the release
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Build | ||
name: "MetaCall Distributable Linux Release" | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|