actions: add checkout, pipenv install
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 37s

This commit is contained in:
Aleksey 2023-12-18 05:44:27 +00:00
parent 3ccb4bab71
commit 633695e5c4
Signed by: tea
GPG Key ID: D9C68D34A3CAE37A

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 }}