Files
server-mods/.gitea/workflows/modlist.yaml
jake 9642969736
Some checks failed
Modlist update / update (push) Failing after 1m11s
[ci] Runner update
2025-10-18 13:28:33 -04:00

22 lines
481 B
YAML

name: "Modlist update"
on: push
jobs:
update:
runs-on: minecraft
steps:
- name: "grabbing new mods"
uses: actions/checkout@v4
- name: "unzip mods"
shell: bash
id: getfiles
run: |
unzip unzip_me.zip
ls --format=single-column *.jar >> $GITHUB_OUTPUT
- name: "truncate readme"
shell: bash
run: |
sed -i 's/## List of Mods.*/## List of Mods/' README.md
cat README.md