Audius MCP Server

- name: audius-mcp uses: actions/upload-artifact@v4.6.0 with: # Artifact name name: audius-mcp # A file, directory or wildcard pattern that describes what to upload path: build/index.js # The desired behavior if no files are found using the provided path. # Available Options: # warn: Output a warning but do not fail the action # error: Fail the action with an error message # ignore: Do not output any warnings or errors, the action does not fail if-no-files-found: warn # optional, default is warn # Duration after which artifact will expire in days. 0 means using default retention. # Minimum 1 day. Maximum 90 days unless changed from the repository settings page. retention-days: 0 # optional # The level of compression for Zlib. Valid from 0 (no compression) to 9 (best compression, slower). Default is 6. compression-level: 6 # optional, default is 6 # If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. overwrite: false # optional, default is false # If true, hidden files will be included in the artifact. If false, hidden files will be excluded. include-hidden-files: false # optional, default is false