Skip to content

Commit 1ba2250

Browse files
committed
test workflow
1 parent 94e970c commit 1ba2250

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Releases
2+
3+
on:
4+
push:
5+
tags:
6+
- "v0.1"
7+
8+
jobs:
9+
10+
build:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: ncipollo/release-action@v1
17+
with:
18+
artifacts: "pcatt/greedy_builder.cpp, requirements.txt, setup.py, README.md, LICENSE"
19+
bodyFile: "README.md"
20+
tag: "v0.1"

0 commit comments

Comments
 (0)