mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 06:19:43 +00:00
isolated python build
This commit is contained in:
parent
90eeda5f68
commit
14070be962
22
.github/workflows/isolated_python_build.yml
vendored
Normal file
22
.github/workflows/isolated_python_build.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: Build and upload to PyPI
|
||||
|
||||
# Build on every branch push, tag push, and pull request change:
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
buildstuff:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout reposistory
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install -y python3-venv
|
||||
|
||||
- name: Install build module
|
||||
run: pip install build -U
|
||||
|
||||
- name: Build
|
||||
run: python3 -m build
|
Loading…
Reference in New Issue
Block a user