WIP: implement gitea actions #6

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

View File

@ -6,5 +6,11 @@ jobs:
Assemble-Zip: Assemble-Zip:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: "prepare pip" - name: "install pip"
run: "apt update -y && apt install pipenv -y" run: |-
apt update -y && apt install pipenv -y
- name: "checkout"
uses: actions/checkout@v3
- name: "setup pipenv environment"
run: pipenv install
working-directory: ${{ gitea.workspace }}