1
0
Fork 0

Add OS-specific readme files to plugin archives

This commit is contained in:
Robbert van der Helm 2022-04-29 18:18:10 +02:00
parent 35cb8b488d
commit 41dfa2bf2d
4 changed files with 32 additions and 0 deletions

View file

@ -75,6 +75,8 @@ jobs:
# GitHub Action strips the top level directory, great, have another one # GitHub Action strips the top level directory, great, have another one
mkdir -p "$ARCHIVE_NAME/$ARCHIVE_NAME" mkdir -p "$ARCHIVE_NAME/$ARCHIVE_NAME"
mv target/bundled/* "$ARCHIVE_NAME/$ARCHIVE_NAME" mv target/bundled/* "$ARCHIVE_NAME/$ARCHIVE_NAME"
- name: Add an OS-specific readme file with installation instructions
run: cp ".github/workflows/readme-${{ runner.os }}.txt" "$ARCHIVE_NAME/$ARCHIVE_NAME/README.txt"
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
with: with:
name: ${{ env.ARCHIVE_NAME }} name: ${{ env.ARCHIVE_NAME }}

10
.github/workflows/readme-Linux.txt vendored Normal file
View file

@ -0,0 +1,10 @@
To install the VST3 plugins, copy the .vst3 _directories_ to:
~/.vst3
To install the CLAP plugins, copy the .clap files to:
~/.clap
You will need to create these directories yourself it they do not yet exist.
See https://github.com/free-audio/clap#hosts for instructions on how to enable
CLAP support in your DAW.

10
.github/workflows/readme-Windows.txt vendored Normal file
View file

@ -0,0 +1,10 @@
To install the VST3 plugins, copy the .vst3 _directories_ to:
C:/Program Files/Common Files/VST3/
To install the CLAP plugins, copy the .clap files to:
C:/Program Files/Common Files/CLAP/
You will need to create these directories yourself it they do not yet exist.
See https://github.com/free-audio/clap#hosts for instructions on how to enable
CLAP support in your DAW.

10
.github/workflows/readme-macOS.txt vendored Normal file
View file

@ -0,0 +1,10 @@
To install the VST3 plugins, copy the .vst3 _directories_ to:
~/Library/Audio/Plug-Ins/VST3
To install the CLAP plugins, copy the .clap files to:
~/Library/Audio/Plug-Ins/CLAP
You will need to create these directories yourself it they do not yet exist.
See https://github.com/free-audio/clap#hosts for instructions on how to enable
CLAP support in your DAW.