-
Notifications
You must be signed in to change notification settings - Fork 45
37 lines (31 loc) · 889 Bytes
/
release.yml
File metadata and controls
37 lines (31 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
build_test:
uses: membraneframework/membrane_actions/.github/workflows/build-test.yml@main
with:
submodules: recursive
test:
uses: membraneframework/membrane_actions/.github/workflows/test.yml@test-sharding
with:
submodules: recursive
test-flags: "--include long_running"
shards: 4
lint:
uses: membraneframework/membrane_actions/.github/workflows/lint.yml@main
with:
submodules: recursive
hex_publish:
needs: [build_test, test, lint]
uses: membraneframework/membrane_actions/.github/workflows/hex-publish.yml@main
with:
submodules: recursive
secrets:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
gh_release:
needs: [hex_publish]
uses: membraneframework/membrane_actions/.github/workflows/github-release.yml@main