ups/.gitea/workflows/release.yml
ngn b854c19f85
Some checks failed
format / format (push) Successful in 16s
release / release (push) Failing after 45s
fix the use of the release action
Signed-off-by: ngn <ngn@ngn.tf>
2025-05-12 20:56:42 +03:00

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:
files: |-
dist/**
api_key: ${{secrets.REPO_TOKEN}}