Skip to content

Commit e2430dd

Browse files
committed
add the workflow that will output the release name
1 parent 81a7de7 commit e2430dd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/releaseTest.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: release-test
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
release:
8+
9+
jobs:
10+
echo-variable:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: See what github.ref is on release
17+
run: echo ${{ github.ref }}

0 commit comments

Comments
 (0)