ups/.gitea/workflows/release.yml
ngn 9e69f7416d
Some checks failed
format / format (push) Successful in 16s
release / release (push) Failing after 26s
install go before using the release action
Signed-off-by: ngn <ngn@ngn.tf>
2025-05-12 21:03:10 +03:00

32 lines
629 B
YAML

name: release
on:
push:
tags:
- "*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v4
- name: Install dependencies
run: |
sudo apt update -y
sudo apt install -y python3 python3-build python3-requests make
- name: Build wheel package
run: make
- name: Create a release
uses: "https://gitea.com/actions/release-action@main"
with:
files: |-
dist/**
api_key: ${{secrets.REPO_TOKEN}}