Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
parent
527f8fa1e1
commit
4c13340ca0
@ -10,11 +10,11 @@ on:
|
|||||||
- "pyproject.toml"
|
- "pyproject.toml"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
format:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: "https://github.com/actions/checkout@v4"
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install black formatter
|
- name: Install black formatter
|
||||||
run: |
|
run: |
|
||||||
|
26
.gitea/workflows/release.yml
Normal file
26
.gitea/workflows/release.yml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
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/**"
|
@ -1,6 +1,7 @@
|
|||||||
# ups | upstream scripts
|
# ups | upstream scripts
|
||||||
|
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
collection of bash and python scripts for pulling and managing patches from the
|
collection of bash and python scripts for pulling and managing patches from the
|
||||||
upstream git repos of my personal forks
|
upstream git repos of my personal forks
|
||||||
|
Loading…
x
Reference in New Issue
Block a user