Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit e0142ce

Browse files
committed
GHA: create release workflow on stable
1 parent c7113b6 commit e0142ce

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Make Release
2+
on:
3+
push:
4+
tags:
5+
- 'v[1-9]*'
6+
7+
jobs:
8+
release:
9+
name: Make Release
10+
if: github.repository_owner == 'votca'
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Create Release
14+
uses: actions/create-release@v1
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.VOTCA_BOT_TOKEN }}
17+
with:
18+
tag_name: ${{ github.ref }}
19+
release_name: ${{ github.ref }}
20+
prerelease: ${{ contains(github.ref, 'rc') }}

0 commit comments

Comments
 (0)