Skip to content

Commit 27203b1

Browse files
committed
add toit workflow to publish package
1 parent 146df2b commit 27203b1

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflow/publish.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Publish package
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v[0-9]+.[0-9]+.[0-9]+'
7+
- 'v[0-9]+.[0-9]+.[0-9]+-*'
8+
9+
jobs:
10+
create-release:
11+
name: Create new release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Publish
15+
uses: toitlang/pkg-publish@v1.3.0

0 commit comments

Comments
 (0)