{"id":27103151,"url":"https://github.com/studiole/actions","last_synced_at":"2026-05-05T14:33:35.235Z","repository":{"id":164913589,"uuid":"630435349","full_name":"StudioLE/Actions","owner":"StudioLE","description":"Reusable C# / .NET workflows for GitHub Actions.","archived":false,"fork":false,"pushed_at":"2026-03-16T21:58:16.000Z","size":123,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"v7","last_synced_at":"2026-03-17T08:25:33.753Z","etag":null,"topics":["actions","ci-cd","cicd","csharp","dotnet","github","github-actions","workflows"],"latest_commit_sha":null,"homepage":"https://docs.github.com/en/actions/using-workflows/reusing-workflows#access-to-reusable-workflows","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StudioLE.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-04-20T11:26:34.000Z","updated_at":"2026-03-16T21:58:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"ee71ea0d-0e81-45d3-8155-00e300eea06f","html_url":"https://github.com/StudioLE/Actions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/StudioLE/Actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StudioLE%2FActions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StudioLE%2FActions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StudioLE%2FActions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StudioLE%2FActions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StudioLE","download_url":"https://codeload.github.com/StudioLE/Actions/tar.gz/refs/heads/v7","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StudioLE%2FActions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32653584,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["actions","ci-cd","cicd","csharp","dotnet","github","github-actions","workflows"],"created_at":"2025-04-06T16:39:33.859Z","updated_at":"2026-05-05T14:33:35.226Z","avatar_url":"https://github.com/StudioLE.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Actions Workflows for Rust and .NET\n\nAdvanced, feature rich reusable workflows for GitHub Actions to fully automate the tedium of configuring CI/CD for Rust and .NET projects.\n\n## .NET\n\n[`ci-cd.yml`](.github/workflows/ci-cd.yml)\n\n```mermaid\nflowchart TD\n    subgraph TESTS[Tests]\n        test-ubuntu[*test-ubuntu*\n        Run tests on Linux]:::TEST\n        test-windows[*test-windows*\n        Run tests on Windows]:::TEST\n        push-tests[*push-tests*\n        Publish Linux test results]:::PUSH\n        push-tests-windows[*push-tests-windows*\n        Publish Windows test results]:::PUSH\n    end\n\n    subgraph CLI[CLI Binaries]\n        publish-cli-linux[*publish-cli-linux*\n        Build CLI for Linux]:::BUILD\n        publish-cli-windows[*publish-cli-windows*\n        Build CLI for Windows]:::BUILD\n        push-cli-linux[*push-cli-linux*\n        Publish CLI for Linux]:::PUSH\n        push-cli-windows[*push-cli-windows*\n        Publish CLI for Windows]:::PUSH\n    end\n\n    release[*release*\n    Determine the version number and compile release notes with Surveyor]:::RELEASE\n\n    subgraph DOC[Documentation]\n        documentation[*documentation*\n        Build Docs]:::BUILD\n        push-documentation[*push-documentation*\n        Publish Docs]:::PUSH\n    end\n\n    subgraph LIB[Libraries]\n        push-packages[*push-packages*\n        Publish libraries to GitHub Packages]:::PUSH\n        push-nuget[*push-nuget*\n        Publish libraries to NuGet.org]:::PUSH\n    end\n\n    environment[*environment*\n    Update the GitHub Environment]:::PUSH\n\n    subgraph DOCKER[Docker]\n        docker-build[*docker-build*\n        Build Docker image]:::BUILD\n        docker-push-prerelease[*docker-push-prerelease*\n        Publish prerelease Docker image]:::PUSH\n        docker-push-release[*docker-push-release*\n        Publish release Docker image]:::PUSH\n    end\n\n    test-ubuntu --\u003e release\n    test-windows --\u003e release\n    publish-cli-linux --\u003e release\n    publish-cli-windows --\u003e release\n    documentation --\u003e release\n\n    release --\u003e docker-build\n    release --\u003e push-packages\n    release --\u003e push-nuget\n    release --\u003e push-cli-linux\n    release --\u003e push-cli-windows\n    release --\u003e push-documentation\n    release --\u003e environment\n\n    docker-build --\u003e docker-push-prerelease\n    docker-build --\u003e docker-push-release\n\n    test-ubuntu --\u003e push-tests\n    test-windows --\u003e push-tests-windows\n    push-tests --\u003e push-tests-windows\n\n    %% Styling with Tailwind colors\n    classDef TEST fill:#ef4444\n    classDef BUILD fill:#84cc16\n    classDef RELEASE fill:#eab308\n    classDef PUSH fill:#0ea5e9\n```\n\n## Bevy - Rust\n\n[`ci-cd-bevy.yml`](.github/workflows/ci-cd-bevy.yml)\n\n```mermaid\nflowchart TD\n    surveyor[*surveyor*\n    Determine version and release type and compile release notes with Surveyor]:::SURVEYOR\n\n    test[*test*\n    Run tests]:::TEST\n\n    build[*build*\n    Build binaries and WebAssembly]:::BUILD\n\n    subgraph TAG[Tag]\n        git-tag[*git-tag*\n        Create Git tag for prereleases]:::RELEASE\n        github-release[*github-release*\n        Create GitHub release]:::RELEASE\n    end\n\n    cargo-publish[*cargo-publish*\n    Publish to crates.io]:::PUSH\n    push-webassembly[*push-webassembly*\n    Publish WebAssembly to web repo]:::PUSH\n\n    %% Main workflow connections\n    surveyor --\u003e test\n    surveyor --\u003e build\n\n    test --\u003e git-tag\n    build --\u003e git-tag\n\n    test --\u003e github-release\n    build --\u003e github-release\n\n    github-release --\u003e cargo-publish\n\n    surveyor --\u003e push-webassembly\n    test --\u003e push-webassembly\n    build --\u003e push-webassembly\n\n    %% Styling with Tailwind colors\n    classDef SURVEYOR fill:#fde047\n    classDef TEST fill:#ef4444\n    classDef BUILD fill:#84cc16\n    classDef RELEASE fill:#f59e0b\n    classDef PUSH fill:#0ea5e9\n```\n\n## Dioxus WebAssembly - Rust\n\n[`ci-cd-dioxus-web.yml`](.github/workflows/ci-cd-dioxus-web.yml)\n\n```mermaid\nflowchart TD\n    surveyor[*surveyor*\n    Determine version and release type with Surveyor]:::SURVEYOR\n\n    dioxus-build-web[*dioxus-build-web*\n    Build Dioxus WebAssembly application]:::BUILD\n\n    subgraph TAG[Tag \u0026 Release]\n        git-tag[*git-tag*\n        Create Git tag for prereleases]:::RELEASE\n        github-release[*github-release*\n        Create GitHub release]:::RELEASE\n    end\n\n    dioxus-push[*dioxus-push*\n    Deploy WebAssembly to web repository]:::PUSH\n\n    environment[*environment*\n    Update GitHub Environment]:::PUSH\n\n    %% Main workflow connections\n    surveyor --\u003e dioxus-build-web\n\n    dioxus-build-web --\u003e git-tag\n    dioxus-build-web --\u003e github-release\n    dioxus-build-web --\u003e dioxus-push\n    dioxus-build-web --\u003e environment\n\n    %% Styling with Tailwind colors\n    classDef SURVEYOR fill:#fde047\n    classDef BUILD fill:#84cc16\n    classDef RELEASE fill:#f59e0b\n    classDef PUSH fill:#0ea5e9\n```\n\n## Rust\n\n[`ci-cd-rust.yml`](.github/workflows/ci-cd-rust.yml)\n\nGeneral-purpose Rust CI/CD workflow suitable for fullstack applications, CLI tools, and libraries. Also available as [`ci-cd-dioxus-fullstack.yml`](.github/workflows/ci-cd-dioxus-fullstack.yml) (wrapper for backward compatibility).\n\n```mermaid\nflowchart TD\n    surveyor[*surveyor*\n    Determine version and release type with Surveyor]:::SURVEYOR\n\n    cargo-build[*cargo-build*\n    Build and test Rust package]:::BUILD\n\n    subgraph TAG[Tag \u0026 Release]\n        git-tag[*git-tag*\n        Create Git tag for prereleases]:::RELEASE\n        github-release[*github-release*\n        Create GitHub release]:::RELEASE\n    end\n\n    subgraph PUBLISH[Publish]\n        cargo-publish[*cargo-publish*\n        Publish to crates.io]:::PUSH\n        brew-release[*brew-release*\n        Generate and publish Homebrew formula]:::PUSH\n    end\n\n    subgraph DOCKER[Docker]\n        docker-build[*docker-build*\n        Build Docker image]:::BUILD\n        docker-push-prerelease[*docker-push-prerelease*\n        Publish prerelease Docker image]:::PUSH\n        docker-push-release[*docker-push-release*\n        Publish release Docker image]:::PUSH\n    end\n\n    environment[*environment*\n    Update GitHub Environment]:::PUSH\n\n    %% Main workflow connections\n    surveyor --\u003e cargo-build\n\n    cargo-build --\u003e git-tag\n    cargo-build --\u003e github-release\n    cargo-build --\u003e environment\n\n    github-release --\u003e cargo-publish\n    github-release --\u003e brew-release\n    cargo-build --\u003e brew-release\n\n    surveyor --\u003e docker-build\n    docker-build --\u003e docker-push-prerelease\n    docker-build --\u003e docker-push-release\n\n    %% Styling with Tailwind colors\n    classDef SURVEYOR fill:#fde047\n    classDef BUILD fill:#84cc16\n    classDef RELEASE fill:#f59e0b\n    classDef PUSH fill:#0ea5e9\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudiole%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstudiole%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudiole%2Factions/lists"}