File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : ["**"]
6+ workflow_dispatch :
7+
8+ jobs :
9+ build_test :
10+ uses : membraneframework/membrane_actions/.github/workflows/build-test.yml@main
11+
12+ lint :
13+ uses : membraneframework/membrane_actions/.github/workflows/lint.yml@main
14+
15+ test :
16+ uses : membraneframework/membrane_actions/.github/workflows/test.yml@main
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ tags :
6+ - " v*"
7+ workflow_dispatch :
8+
9+ jobs :
10+ build_test :
11+ uses : membraneframework/membrane_actions/.github/workflows/build-test.yml@main
12+
13+ lint :
14+ uses : membraneframework/membrane_actions/.github/workflows/lint.yml@main
15+
16+ test :
17+ uses : membraneframework/membrane_actions/.github/workflows/test.yml@main
18+
19+ hex_publish :
20+ needs : [build_test, lint, test]
21+ uses : membraneframework/membrane_actions/.github/workflows/hex-publish.yml@main
22+ secrets :
23+ HEX_API_KEY : ${{ secrets.HEX_API_KEY }}
You can’t perform that action at this time.
0 commit comments