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

Commit 5f6d06e

Browse files
authored
Create release.yml
1 parent f2384a7 commit 5f6d06e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
on:
3+
push:
4+
tags:
5+
- 'v*'
6+
7+
name: Create New Release
8+
9+
jobs:
10+
build:
11+
name: Create New Release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
# - name: Generate Changelog. TODO: Generate a changelog from current tag -> new tag
17+
# run: echo "# Good things have arrived" > ${{ github.workflow }}-CHANGELOG.txt
18+
- name: Release
19+
uses: softprops/action-gh-release@v1
20+
# with:
21+
# body_path: ${{ github.workflow }}-CHANGELOG.txt
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}

0 commit comments

Comments
 (0)