Skip to content

Commit 5a8cdca

Browse files
authored
Create release.yml
1 parent 747341b commit 5a8cdca

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish Release
2+
on:
3+
push:
4+
tags:
5+
- 'v*'
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- name: Create a Release
12+
uses: elgohr/Github-Release-Action@v4
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
15+
with:
16+
title: ${{ github.event.pull_request.title }}

0 commit comments

Comments
 (0)