-
Notifications
You must be signed in to change notification settings - Fork 25
48 lines (42 loc) · 1.11 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 Walrus-sites Branch
on:
repository_dispatch:
types: [tag-walrus-sites-branch]
workflow_call:
inputs:
commit:
description: 'Walrus-sites repo commit to tag'
type: string
required: true
tag_name:
description: 'Tag Name'
type: string
required: true
workflow_dispatch:
inputs:
commit:
description: 'Walrus-sites repo commit to tag'
type: string
required: true
tag_name:
description: 'Tag Name'
type: string
required: true
env:
COMMIT: "${{ github.event.client_payload.commit || inputs.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.COMMIT }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}