HOI4_randomchanges/.gitea/workflows/modzip.yaml
Aleksey 48f6434fbf
All checks were successful
Make mod zip release / Assemble-Zip (push) Successful in 41s
actions: pipenv attempt to feed system python3
2023-12-18 05:46:48 +00:00

17 lines
451 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 pip"
run: |-
apt update -y && apt install pipenv -y
- name: "checkout"
uses: actions/checkout@v3
- name: "setup pipenv environment"
run: pipenv --python /usr/bin/python3 install
working-directory: ${{ gitea.workspace }}