Skip to content

Commit a699ea6

Browse files
Merge pull request #6 from cardano-apexpool/packaging
Added the package build script
2 parents ea16f58 + 8e2de5f commit a699ea6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: pyreleaser
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: "checkout"
11+
uses: actions/checkout@v4
12+
- name: "fetch unshallow"
13+
run: git fetch --prune --unshallow
14+
- name: "list"
15+
run: pwd && ls -la
16+
- name: "deps"
17+
run: python -m pip install -r requirements.txt
18+
- name: "package"
19+
run: python -m build .
20+
- name: "list"
21+
run: ls -la ./dist/
22+
- name: "release"
23+
uses: ncipollo/[email protected]
24+
with:
25+
artifacts: "dist/*"

0 commit comments

Comments
 (0)