Files
server-mods/.gitea/workflows/modlist.yaml
jake 533f5f3843
Some checks failed
Modlist update / update (push) Has been cancelled
testing workflow
2025-10-18 13:23:00 -04:00

22 lines
476 B
YAML

name: "Modlist update"
on: push
jobs:
update:
runs-on: wind
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