We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec0b12e commit 0467bb0Copy full SHA for 0467bb0
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,23 @@
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
+ test:
14
+ uses: membraneframework/membrane_actions/.github/workflows/test.yml@main
15
16
+ lint:
17
+ uses: membraneframework/membrane_actions/.github/workflows/lint.yml@main
18
19
+ hex_publish:
20
+ needs: [build_test, test, lint]
21
+ uses: membraneframework/membrane_actions/.github/workflows/hex-publish.yml@main
22
+ secrets:
23
+ HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
0 commit comments