Skip to content

Commit 1aa317e

Browse files
committed
Release CI
1 parent 87d3df6 commit 1aa317e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build release
2+
on:
3+
push:
4+
tags:
5+
- "v*.*.*"
6+
7+
jobs:
8+
build:
9+
name: Build
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
- name: Set env
14+
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
15+
- uses: "marvinpinto/action-automatic-releases@latest"
16+
with:
17+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
18+
prerelease: false

0 commit comments

Comments
 (0)