8000 SC action: add input to select SC branch by weefuzzy · Pull Request #6 · flucoma/actions · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

SC action: add input to select SC branch #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion sc/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ inputs:
description: 'Select a specific branch for flucoma-core'
required: false
default: 'main'
sc_branch:
description: 'Select an SC branch to use'
requireed: false
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo here? required?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed, typo

default: 'main'
runs:
using: "composite"
steps:
Expand All @@ -23,7 +27,7 @@ runs:
python-version: '3.9'

- name: Get SuperCollider Source
run: git clone --single-branch --branch main --recursive https://github.com/supercollider/supercollider.git sdk
run: git clone --single-branch --branch ${{ inputs.sc_branch }} --recursive https://github.com/supercollider/supercollider.git sdk
shell: bash

- name: Conditionally download flucoma-core
Expand Down
0