Files
fantasysmp-cit/.gitea/workflows/main.yml
T
zxq5 3478d10a9a
Zip Project / build (push) Failing after 16s
should probably checkout first.
2025-09-22 00:33:43 +01:00

20 lines
399 B
YAML

name: Zip Project
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Zip Project
run: zip -r fantasysmp.zip assets pack.mcmeta pack.png
- name: Release
uses: akkuman/gitea-release-action@v1
with:
files: ./fantasysmp.zip
token: "${{secrets.RELEASE_TOKEN}}"