WIP: implement gitea actions #6

Draft
tea wants to merge 13 commits from actions into main
Showing only changes of commit f0527f52cf - Show all commits

View File

@ -4,8 +4,12 @@ on: [push]
jobs:
Assemble-Zip:
runs-on: python3.11
runs-on: ubuntu-latest
steps:
- name: "install python 3.11"
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: "install pip"
run: |-
apt update -y && apt install pipenv -y