Skip to content

Commit 055f268

Browse files
committed
Github: add release workflow
1 parent 4058db2 commit 055f268

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
8+
jobs:
9+
release:
10+
name: Release
11+
strategy:
12+
matrix:
13+
os: [ ubuntu-latest ]
14+
go: [ '1.16' ]
15+
runs-on: ${{ matrix.os }}
16+
17+
steps:
18+
- name: Install Go
19+
uses: actions/setup-go@v2
20+
with:
21+
go-version: ${{ matrix.go }}
22+
23+
- name: Checkout code
24+
uses: actions/checkout@v2
25+
with:
26+
fetch-depth: 0

0 commit comments

Comments
 (0)