Files
lms-plugins/.gitea/workflows/release.yaml
matteo 8d4a856c2a
Some checks failed
Release Plugins / release-plugins (push) Failing after 7s
Update .gitea/workflows/release.yaml
2024-03-14 20:32:12 +01:00

18 lines
475 B
YAML

name: Release Plugins
on: [push]
jobs:
release-plugins:
runs-on: ubuntu-latest
steps:
- run: echo "Action started"
- name: Check out repository
uses: actions/checkout@v3
- run: apt update && apt install zip
- run: zip -r YouTubeMusic.zip .
- name: Release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
YouTubeMusic.zip
api_key: '${{secrets.RELEASE_TOKEN}}'