Skip to content

Commit fd512df

Browse files
committed
Add initial tooling to take actions on creating tags
1 parent 4104266 commit fd512df

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/release.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Run this Action on creating a new tag.
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
jobs:
7+
hello_world:
8+
runs_on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Say Hello
12+
run: echo hello world

0 commit comments

Comments
 (0)