{"id":19289458,"url":"https://github.com/audacity/audacity-actions","last_synced_at":"2025-04-22T05:31:26.045Z","repository":{"id":44553761,"uuid":"447661220","full_name":"audacity/audacity-actions","owner":"audacity","description":"GitHub Actions for Audacity","archived":false,"fork":false,"pushed_at":"2024-07-12T11:55:05.000Z","size":4961,"stargazers_count":3,"open_issues_count":0,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-01T20:00:04.873Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/audacity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-13T15:58:59.000Z","updated_at":"2024-08-07T17:01:54.000Z","dependencies_parsed_at":"2024-02-29T18:49:31.747Z","dependency_job_id":"02338557-518f-4f9f-ae1e-f91828a4f5f6","html_url":"https://github.com/audacity/audacity-actions","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/audacity%2Faudacity-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/audacity%2Faudacity-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/audacity%2Faudacity-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/audacity%2Faudacity-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/audacity","download_url":"https://codeload.github.com/audacity/audacity-actions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250175061,"owners_count":21387131,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T22:15:38.156Z","updated_at":"2025-04-22T05:31:26.021Z","avatar_url":"https://github.com/audacity.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# audacity-actions\n\nA set of GitHub Actions to simplify Audacity build workflows. Most of these actions are written in JavaScript and require Node 16 to run.\n\nIt is possible to locally debug the actions by settings certain environment values:\n* `GITHUB_WORKSPACE`: path to audacity source code\n* `INPUT_*`: input value. For example, input named `configuration_types` can be passed using `INPUT_CONFIGURATION_TYPES` environment variable.\n* Variables, set by a previous step.\n\n##  audacity/audacity-actions/dependencies@v1\n\nThis action setups the environment required to build Audacity:\n* Conan 1.43.2,\n* Required Linux libraries when running on Linux.\n\nThis action allows switching to GCC11 on Linux using the `force_gcc11` parameter.\nThis action is a \"composite\" action; it is impossible to debug it locally.\n\n## audacity/audacity-actions/configure@v1\n\nConfigure Audacity using provided options:\n* `generator`: CMake generator to use. Required.\n* `arch`: Host architecture (i. e., the resulting binaries architecture) in NodeJS format (`x64`, `x32`, `arm64`). Windows builds support `x32` and `x64`, macOS builds support `x64` and `arm64` values. Optional. The default value is x64.\n* `build_level`: Audacity build level. Can be one of `alpha`, `beta`, or `release`. Optional. The default value is `alpha`.\n* `configuration_types`: This value is used to initialize `CMAKE_CONFIGURATION_TYPES`. Valid values are: `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel` or any combination concatenated with semicolon. Optional. The default value is `RelWithDebInfo`.\n * `build_type`: CMake build type (or configuration) to use for the build. Valid values are: `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel`. Optional. The default value is `RelWithDebInfo`.\n* `cmake_options`: Additional CMake options to pass to CMake. Optional.\n* `image_compiler`: Path to the `image-compiler` executable. Required when cross-compiling and the build platform can not run the application with host architecture. For example, when building for AppleSilicon on Intel Mac.\n* `windows_certificate`: Base 64 of PFX file with the code signing certificate on Windows. Optional.\n* `windows_certificate_password`: Password to the PFX file with the code signing certificate.\n* `apple_codesign_identity`: Apple code-signing identity. Optional.\n* `apple_notarization_user_name`: Apple notarization user name. Optional.\n* `apple_notarization_password`: Apple notarization password.\n\nIt is preferred to code sign the build on macOS during the package step.\n\nThis action sets the following environment variables:\n* `AUDACITY_BUILD_DIR`: CMake build directory. Equals to `.build.${arch}`.\n* `AUDACITY_BUILD_TYPE`: equals to the value of `build_type`.\n* `AUDACITY_BUILD_LEVEL`: numeric representation of `build_level`. 0 for `alpha`, 1 for `beta`, 2 for `release`.\n* `AUDACITY_ARCH`: equals to the value of `arch`.\n* `AUDACITY_CROSS_COMPILING`: equals to true if the host and build architectures do not match.\n\nIf during the configuration new Conan packages were built, the following will happen:\n* On Windows, if `ARTIFACTORY_SYMBOLS_URL` and `ARTIFACTORY_SYMBOLS_KEY` are present in the environment - debug information will be uploaded to Artifactory in SymStore format.\n* When `SENTRY_AUTH_TOKEN`, `SENTRY_HOST`, `SENTRY_ORG_SLUG`, and `SENTRY_PROJECT_SLUG` are present in the environment - debug and source information is uploaded to Sentry.\n* When `CONAN_BINARIES_REMOTE`, `CONAN_LOGIN_USERNAME`, and `CONAN_PASSWORD` are present in the environment - newly built binaries are uploaded to Conan.\n## audacity/audacity-actions/build@v1\n\nBuild Audacity. Allows setting the target with the optional parameter `target`.\n\nWhen `SENTRY_AUTH_TOKEN`, `SENTRY_HOST`, `SENTRY_ORG_SLUG`, and `SENTRY_PROJECT_SLUG` are present in the environment and `build_level` is not `alpha`  - debug and source information is uploaded to Sentry.\n\n\n##  audacity/audacity-actions/package@v1\n\nPackage Audacity and upload the resulting artifacts.\n\nSupported parameters:\n* `postfix`: a postfix to add to the artifact.\n* `cmake_options`: additional options to pass to CMake.\n\n### Windows\n\nAction creates a zipped version of Audacity. If `build_level` is not `alpha` - action will generate an installer as well.\n\n### Linux\n\nAction creates an AppImage.\n\n### macOS\n\nOn macOS, action can be parametrized:\n* `apple_codesign_identity`: Apple code-signing identity. Optional.\n* `apple_notarization_user_name`: Apple notarization user name. Optional.\n* `apple_notarization_password`: Apple notarization password.\n* `archs`: list of architectures to package, in NodeJS format, one per line. If more than one architecture is provided, an universal binary will be created as well.\n\n##  audacity/audacity-actions/update_recipes@v1\n\nUpdate recipes in the specified remote using the current state of audacity/conan-recipes repository\n\nSupported parameters:\n* `recipes_remote`: \"Recipes\" only remote.\n* `login`: Conan login for the recipes_remote.\n* `password`: Conan password for the recipes_remote.\n* `default_channel`: Channel to generate package for.\n## Building Actions\n\nBuilding a GitHub suitable package is only possible on macOS now.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faudacity%2Faudacity-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faudacity%2Faudacity-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faudacity%2Faudacity-actions/lists"}