2023-12-18 05:14:23 +00:00
|
|
|
name: Make mod zip release
|
|
|
|
run-name: ${{ gitea.actor }} assembles mod zip release
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Assemble-Zip:
|
2023-12-19 15:53:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-18 05:14:23 +00:00
|
|
|
steps:
|
2023-12-19 15:38:15 +00:00
|
|
|
- name: "install python 3.11"
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
2023-12-19 15:46:16 +00:00
|
|
|
python-version: "3.11.7"
|
2023-12-19 15:39:27 +00:00
|
|
|
- name: "install pipenv"
|
2023-12-18 05:44:27 +00:00
|
|
|
run: |-
|
2023-12-19 15:58:15 +00:00
|
|
|
python -m pip install pipenv
|
2023-12-18 05:44:27 +00:00
|
|
|
- name: "checkout"
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "setup pipenv environment"
|
2023-12-18 11:20:37 +00:00
|
|
|
run: pipenv install
|
2023-12-18 05:44:27 +00:00
|
|
|
working-directory: ${{ gitea.workspace }}
|