-
Notifications
You must be signed in to change notification settings - Fork 11.2k
48 lines (42 loc) · 1.06 KB
/
tag.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
48
name: Tag
on:
repository_dispatch:
types: [tag-main]
workflow_call:
inputs:
sui_commit:
description: 'Sui repo commit to tag'
type: string
required: true
tag_name:
description: 'Tag Name'
type: string
required: true
workflow_dispatch:
inputs:
sui_commit:
description: 'Sui repo commit to tag'
type: string
required: true
tag_name:
description: 'Tag Name'
type: string
required: true
env:
SUI_COMMIT: "${{ github.event.client_payload.sui_commit || inputs.sui_commit }}"
TAG_NAME: "${{ github.event.client_payload.tag_name || inputs.tag_name }}"
jobs:
tag:
name: Tag
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1
- name: Tag
uses: julbme/gh-action-manage-tag@v1
with:
name: ${{ env.TAG_NAME }}
state: present
from: ${{ env.SUI_COMMIT }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}