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

22 lines
595 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
- name: Archive Release
uses: thedoctor0/zip-release@0.7.5
with:
type: 'zip'
filename: 'YouTubeMusic.zip'
exclusions: '*.git* .editorconfig repo.xml'
- name: Release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
YouTubeMusic.zip
api_key: '${{secrets.RELEASE_TOKEN}}'