Compare commits

..

13 Commits

Author SHA1 Message Date
bb94d4c905
actions: fiddle with python
All checks were successful
Make mod zip release / Assemble-Zip (push) Successful in 57s
2023-12-19 15:58:15 +00:00
61681275ed
actions: fiddle with python
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 3m59s
2023-12-19 15:53:31 +00:00
f2cfa0ba9c
actions: fiddle with python
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 10s
2023-12-19 15:50:08 +00:00
937f1c5832
actions: fiddle with python
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 10s
2023-12-19 15:46:16 +00:00
a75813601d
actions: fiddle with
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 10s
2023-12-19 15:39:27 +00:00
f0527f52cf
actions: fiddle with
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 26s
2023-12-19 15:38:15 +00:00
8a70414115
actions: change environment
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 53s
2023-12-18 11:20:37 +00:00
48f6434fbf
actions: pipenv attempt to feed system python3
All checks were successful
Make mod zip release / Assemble-Zip (push) Successful in 41s
2023-12-18 05:46:48 +00:00
633695e5c4
actions: add checkout, pipenv install
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 37s
2023-12-18 05:44:27 +00:00
3ccb4bab71
actions: apt -y
All checks were successful
Make mod zip release / Assemble-Zip (push) Successful in 19s
2023-12-18 05:21:53 +00:00
6c1a894ab8
actions: apt update
Some checks failed
Make mod zip release / Assemble-Zip (push) Failing after 10s
2023-12-18 05:20:43 +00:00
49e3100166
try to use apt
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 24s
Make mod zip release / Assemble-Zip (push) Failing after 4s
2023-12-18 05:18:04 +00:00
0a7a434a4e
draft: add pipenv installation
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 21s
Make mod zip release / Assemble-Zip (push) Failing after 3s
2023-12-18 05:14:23 +00:00
2 changed files with 20 additions and 19 deletions

View File

@ -1,19 +0,0 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

View File

@ -0,0 +1,20 @@
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.7"
- name: "install pipenv"
run: |-
python -m pip install pipenv
- name: "checkout"
uses: actions/checkout@v3
- name: "setup pipenv environment"
run: pipenv install
working-directory: ${{ gitea.workspace }}