-
-
Notifications
You must be signed in to change notification settings - Fork 48
47 lines (36 loc) · 1.24 KB
/
tag-beta.yml
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
38
39
40
41
42
43
44
45
46
47
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
name: "Beta Tag"
jobs:
detectToolVersions:
name: "Detect Tool Versions"
uses: ./.github/workflows/part_tool_versioning.yml
release:
name: "Release"
uses: ./.github/workflows/part_release.yml
with:
releaseName: "${{ github.ref_name }}"
docs:
name: "Docs"
needs: ["release", "detectToolVersions"]
uses: ./.github/workflows/part_docs.yml
with:
otpVersion: "${{ needs.detectToolVersions.outputs.otpVersion }}"
rebarVersion: "${{ needs.detectToolVersions.outputs.rebarVersion }}"
elixirVersion: "${{ needs.detectToolVersions.outputs.elixirVersion }}"
releaseName: "${{ github.ref_name }}"
publish:
name: "Publish"
needs: ["detectToolVersions"]
uses: ./.github/workflows/part_publish.yml
with:
otpVersion: "${{ needs.detectToolVersions.outputs.otpVersion }}"
rebarVersion: "${{ needs.detectToolVersions.outputs.rebarVersion }}"
elixirVersion: "${{ needs.detectToolVersions.outputs.elixirVersion }}"
releaseName: "${{ github.ref_name }}"
secrets:
HEX_API_KEY: "${{ secrets.HEX_API_KEY }}"