Skip to content

ci: switch to uv package manager #106

ci: switch to uv package manager

ci: switch to uv package manager #106

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
workflow_dispatch:
repository_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Build
run: |
uv run python3 main.py
echo "NEW_TAG=$(cat NEW_TAG.txt)" >> $GITHUB_ENV
- name: Release
if: hashFiles('NEW_TAG.txt') != ''
uses: ncipollo/release-action@v1
with:
artifacts: build/*.zip,build/updater.json
tag: "${{ env.NEW_TAG }}"
body: https://github.com/frida/frida/releases