Skip to content

Commit

Permalink
Add StudioRack metdata, preview and pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
kmturley committed Feb 21, 2022
1 parent 32ee949 commit 74b7754
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,44 @@
name: Release

on:
workflow_dispatch:
push:
tags:
- "v*"

jobs:
create_release:
name: Create release
runs-on: ubuntu-latest
outputs:
upload_id: ${{ steps.draft_release.outputs.id }}
upload_url: ${{ steps.draft_release.outputs.upload_url }}
steps:
- name: Draft release
id: draft_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true

build_release:
name: Build release
needs: create_release
uses: studiorack/studiorack-workflows/.github/workflows/sfz.yml@main
with:
release_id: ${{ needs.create_release.outputs.upload_id }}
release_url: ${{ needs.create_release.outputs.upload_url }}

publish_release:
name: Publish release
needs: [create_release, build_release]
runs-on: ubuntu-latest
steps:
- uses: eregon/publish-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_id: ${{ needs.create_release.outputs.upload_id }}
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,19 @@
name: Test

on:
push:

jobs:
test_code:
name: Test code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install
run: |
pip install git+git://github.com/jisaacstone/sfzlint.git
- name: Lint
run: |
sfzlint .
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
.DS_Store
Binary file added avl-drumkits.flac
Binary file not shown.
Binary file added avl-drumkits.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions plugins.json
@@ -0,0 +1,40 @@
{
"plugins": [
{
"author": "Glen MacArthur",
"homepage": "http://www.bandshed.net/avldrumkits",
"name": "AVL Drumkits",
"description": "Black Pearl and Red Zepplin drumkits recorded with 5 velocity layers per kit piece.",
"tags": [
"Instrument",
"Drums",
"sfz"
],
"version": "1.1.0",
"id": "avl-drumkits",
"date": "2022-02-20T07:00:00.000Z",
"files": {
"audio": {
"name": "avl-drumkits.flac",
"size": 696023
},
"image": {
"name": "avl-drumkits.jpg",
"size": 153997
},
"linux": {
"name": "avl-drumkits.zip",
"size": 16017234
},
"mac": {
"name": "avl-drumkits.zip",
"size": 16017234
},
"win": {
"name": "avl-drumkits.zip",
"size": 16017234
}
}
}
]
}

0 comments on commit 74b7754

Please sign in to comment.