17 lines
432 B
YAML
17 lines
432 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: zip -r YouTubeMusic.zip .
|
|
- name: Release
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: |-
|
|
YouTubeMusic.zip
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|