Skip to content

Commit f046812

Browse files
committed
Merge branch 'master' of github.com:cc-wong/python-webservice-demo
2 parents 422f193 + f1dda40 commit f046812

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)