All checks were successful
format / format (push) Successful in 17s
Signed-off-by: ngn <ngn@ngn.tf>
27 lines
530 B
YAML
27 lines
530 B
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build wheel package
|
|
run: |
|
|
sudo apt update -y
|
|
sudo apt install -y python3 python3-build python3-requests make
|
|
make
|
|
|
|
- name: Create release
|
|
uses: "https://gitea.com/actions/release-action@main"
|
|
with:
|
|
api_key: ${{secrets.REPO_TOKEN}}
|
|
files:
|
|
- "dist/*"
|