HOI4_randomchanges/.gitea/workflows/modzip.yaml
Aleksey f0527f52cf
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 26s
actions: fiddle with
2023-12-19 15:38:15 +00:00

21 lines
546 B
YAML

name: Make mod zip release
run-name: ${{ gitea.actor }} assembles mod zip release
on: [push]
jobs:
Assemble-Zip:
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
- name: "checkout"
uses: actions/checkout@v3
- name: "setup pipenv environment"
run: pipenv install
working-directory: ${{ gitea.workspace }}