Skip to content

Commit bc697a2

Browse files
committed
Testing beta publish yml
1 parent 7e77ee0 commit bc697a2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Tag name test
2+
on:
3+
pull_request:
4+
push:
5+
# trying and staging branches are for BORS config
6+
branches:
7+
- trying
8+
- staging
9+
- main
10+
# on:
11+
# push:
12+
# tags:
13+
# - "v*.*.*-beta.*"
14+
jobs:
15+
test:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set env
20+
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
21+
- name: Test
22+
run: |
23+
echo $RELEASE_VERSION
24+
echo ${{ env.RELEASE_VERSION }}

0 commit comments

Comments
 (0)