Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.

Commit 27c99d4

Browse files
committed
Add release workflow
1 parent 22399d2 commit 27c99d4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
on:
3+
push:
4+
tags: ['*']
5+
permissions:
6+
contents: write
7+
jobs:
8+
release:
9+
name: Release
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
- name: Create GitHub release
15+
uses: docker://antonyurchenko/git-release:v4
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)