-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02214da
commit 48f38af
Showing
3 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Installation | ||
|
||
You can download the released `zip` file and extract it to the `mpv/scripts` directory or run `make install`. See [Installation](https://github.com/Ajatt-Tools/mpvacious#installation) for details. | ||
|
||
## Issues | ||
|
||
If you face any problems when installing or using mpvacious, [ask in our chat](https://tatsumoto.neocities.org/blog/join-our-community.html)! | ||
|
||
## Support my work | ||
|
||
I would not have been able to develop this add-on without the support of my patrons. Thanks so much! | ||
|
||
<p align="center"> | ||
<a href="https://tatsumoto.neocities.org/blog/donating-to-tatsumoto.html" rel="nofollow"><img alt="Patreon" src="https://i.imgur.com/qkNP40F.png"></a> | ||
<a href="https://github.com/Ajatt-Tools" rel="nofollow"><img src="https://user-images.githubusercontent.com/69171671/92849452-ddedf100-f3da-11ea-9405-ee17460751f9.png"></a> | ||
<a href="https://tatsumoto.neocities.org/blog/join-our-community" rel="nofollow"><img src="https://tatsumoto.neocities.org/blog/img/join_us_on_element_220x51.png"></a> | ||
</p> | ||
|
||
## Changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: "tagged-release" | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
tagged-release: | ||
name: "Tagged Release" | ||
runs-on: "ubuntu-latest" | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: "Create zip" | ||
run: | | ||
make BRANCH=HEAD | ||
- name: "Create release" | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
prerelease: false | ||
generate_release_notes: true | ||
append_body: true | ||
body_path: .github/RELEASE/release-boilerplate.md | ||
name: "mpvacious ${{github.ref_name}}" | ||
files: | | ||
.github/RELEASE/*.zip | ||
.github/RELEASE/*.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters