ups/.gitea/workflows/release.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 26: cannot unmarshal !!seq into string
ngn 8bdfd88a77
All checks were successful
format / format (push) Successful in 17s
fix the release workflow syntax
Signed-off-by: ngn <ngn@ngn.tf>
2025-05-12 20:54:03 +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:
api_key: ${{secrets.REPO_TOKEN}}
files:
- "dist/*"