-
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (30 loc) · 669 Bytes
/
tag-beta.yml
File metadata and controls
41 lines (30 loc) · 669 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
38
39
40
41
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+"
name: "Beta Tag"
permissions:
contents: read
jobs:
docs:
name: "Docs"
permissions:
id-token: write
contents: read
attestations: write
uses: ./.github/workflows/part_docs.yml
publish:
name: "Publish"
uses: ./.github/workflows/part_publish.yml
with:
releaseName: "${{ github.ref_name }}"
secrets:
HEX_API_KEY: "${{ secrets.HEX_API_KEY }}"
release:
name: "Release"
needs: ["docs"]
permissions:
contents: write
uses: ./.github/workflows/part_release.yml
with:
releaseName: "${{ github.ref_name }}"