Skip to content

Commit

Permalink
Add pyreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-spencer committed Jun 19, 2024
1 parent 84fbcd9 commit a6b4c17
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: pyreleaser
on:
push:
tags:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "checkout"
uses: actions/checkout@v4
- name: "fetch unshallow"
run: git fetch --prune --unshallow
- name: "list"
run: pwd && ls -la
- name: "deps"
run: python -m pip install -r requirements/local.txt
- name: "package"
run: make package-source
- name: "list"
run: ls -la ./dist/
- name: "release"
uses: ncipollo/release-action@v1.14.0
with:
artifacts: "dist/*"

0 comments on commit a6b4c17

Please sign in to comment.