Skip to content

Commit f1dda40

Browse files
authored
Create test-tag-trigger.yml
1 parent 27e4029 commit f1dda40

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Test trigger by tags
2+
3+
on:
4+
push:
5+
tags:
6+
- test-**
7+
8+
jobs:
9+
trigger-by-tag:
10+
runs-on: ubuntu-latest
11+
steps:
12+
-
13+
name: Get and print tag name
14+
env:
15+
TAG_NAME: ${{ github.ref_name }}
16+
run: echo "Tag name = ${{ github.ref_name }}"

0 commit comments

Comments
 (0)